Posts by Tekashi • 11 points
1 post
-
1
votes2
answers7309
viewsA: How to concatenate items from a python list?
You can use this also to get fewer lines. array = ['_', '_', '_', '_'] result = [' '.join(array)] print(result) Upshot: ['_ _ _ _']…