Answers for "print list of strings in python"

1

how to print a list of strings in python

lst = ["we", "are", "strings"]
for i in lst:
  print(i)
Posted by: Guest on August-08-2021
1

print list in python

lis = [0,1,2,3,4]
for i in range(len(lis)):
  print(lis[i])
Posted by: Guest on September-05-2021

Code answers related to "print list of strings in python"

Python Answers by Framework

Browse Popular Code Answers by Language