python-by-example-150-chall.../challenges1-11/challenage-001.py

7 lines
188 B
Python
Raw Permalink Normal View History

2019-07-17 14:56:46 +08:00
print('enter your name')
name = input("name : ")
2025-05-24 08:27:55 +08:00
# There are three ways to do this
#print('your name is {0}'.format(name))
#print('your name is %s' % (name))
print(f"your name is {name}")