Как печатать слова в строке? питон
s1 = "I am testing"
for i in s1.split():
print i
BreadCode
s1 = "I am testing"
for i in s1.split():
print i