Files
python-by-example-150-chall…/challenges35-44/challenge-037.py

4 lines
73 B
Python
Raw Normal View History

2019-07-17 09:56:46 +03:00
name = str(input('Enter your name : '))
for i in name:
print(i+'\n')