Computer Science, asked by pradhanmanmath38, 5 months ago

wap in python to print your name vertically using for loop​

Answers

Answered by YUVILOVE2009
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 gaganadithyareddy9
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