Answers for "how to print a 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

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

Python Answers by Framework

Browse Popular Code Answers by Language