Answers for "How to printing the words in a string? python"

0

How to printing the words in a string? python

s1 = "I am testing"
for i in s1.split():
    print i
Posted by: Guest on April-01-2021

Code answers related to "How to printing the words in a string? python"

Python Answers by Framework

Browse Popular Code Answers by Language