So drucken Sie eine Liste von Saiten in Python

lst = ["we", "are", "strings"]
for i in lst:
  print(i)
IC