Jak wydrukować listę strun w Pythonie
lst = ["we", "are", "strings"]
for i in lst:
print(i)
IC
lst = ["we", "are", "strings"]
for i in lst:
print(i)