Answers for "how to print items from list"

2

how to print all items in a list python

fruits = ["Apple","Orange","Watermelon","cherry"]
for fruit in fruits:
    print(fruit)
Posted by: Guest on August-04-2021
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 items from list"

Python Answers by Framework

Browse Popular Code Answers by Language