6 lines
236 B
Python
6 lines
236 B
Python
first_name = str(input('Enter your first name in lower-case : '))
|
|
surname = str(input('Enter your surname in lower-case : '))
|
|
# title就是把word转换为标题形式
|
|
compact = first_name.title() + ' ' + surname.title()
|
|
print(compact)
|