Python Program Using a for Loop That Loops Over a Sequence

Aim:

Write a python program using a for loop that loops over a sequence. What is sequence ?

Program:

str="i am python developer"
for i in str:
print(i) 

Output:

i

a
m

p
y
t
h
o
n

d
e
v
e
l
o
p
e
r

Leave a Comment