python-by-example-150-chall.../challenges20-26/challenge-022.py

6 lines
236 B
Python
Raw Normal View History

2019-07-17 14:56:46 +08:00
first_name = str(input('Enter your first name in lower-case : '))
surname = str(input('Enter your surname in lower-case : '))
2025-05-26 06:49:34 +08:00
# title就是把word转换为标题形式
2019-07-17 14:56:46 +08:00
compact = first_name.title() + ' ' + surname.title()
print(compact)