4 lines
88 B
Python
4 lines
88 B
Python
print('enter your name')
|
|
name = input("name : ")
|
|
print('your name is {0}'.format(name))
|