Answers for "python print a list of strings"

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 "python print a list of strings"

Python Answers by Framework

Browse Popular Code Answers by Language