Answers for "how to print multiple list into new line in python"

5

how to print items in a list in a single line python

>>> l = [1, 2, 3]
>>> print(' '.join(str(x) for x in l))
1 2 3
>>> print(' '.join(map(str, l)))
1 2 3
Posted by: Guest on May-09-2020
0

python break list into multiple lines

list_of_elements = \
['AA',
'BB',
'CC',
'DD',
'EE',
'FF', 
'GG']

list_of_elements = [
'AA',
'BB',
'CC',
'DD',
'EE',
'FF', 
'GG']
Posted by: Guest on October-18-2021

Code answers related to "how to print multiple list into new line in python"

Python Answers by Framework

Browse Popular Code Answers by Language