Как распечатать список строк в Python
lst = ["we", "are", "strings"]
for i in lst:
print(i)
IC
lst = ["we", "are", "strings"]
for i in lst:
print(i)