Answers for "how to print each element of a list in python"

2

print all elements in list python

# using for loop
scores = [11, 12, 13, 14, 15, 16]
for score in scores:
    print(score)
Posted by: Guest on May-14-2020
3

print list in one line python

# using * operator
scores = [11, 12, 13, 14, 15, 16]
print(*scores)
Posted by: Guest on May-14-2020
1

how to print from a python list

list = ['a', 'b']
print(list[0])
#that will print 'a'
#print(list[1]) will print 'b'
Posted by: Guest on July-22-2020

Code answers related to "how to print each element of a list in python"

Python Answers by Framework

Browse Popular Code Answers by Language