wap in python to print your name vertically using for loop
Answers
Answered by
0
Answer:
Get code examples like "print list vertically in python with loop" instantly right from your google search results with the Grepper Chrome Extension.
Answered by
0
Answer:
Hey this is in python...
myname = 'Gagan'
for i in myname:
print(i)
# Hope this helps and this is what you are expecting...
Similar questions