how to print all list items python code example
Example 1: print list in one line python
# using * operator
scores = [11, 12, 13, 14, 15, 16]
print(*scores)
Example 2: print string elements in list python
# list having all elements are strings
strings = ['string1', 'string2', 'string3', 'string4']
for string in strings:
print(string)