Answers for "print an element in a list python"

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

print string elements in list python

# list having all elements are strings
strings = ['string1', 'string2', 'string3', 'string4']
for string in strings:
    print(string)
Posted by: Guest on May-14-2020

Code answers related to "print an element in a list python"

Python Answers by Framework

Browse Popular Code Answers by Language