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

5 lines
194 B
Python
Raw Normal View History

2019-07-17 09:56:46 +03:00
first_name = str(input('Enter your first name in lower-case : '))
surname = str(input('Enter your surname in lower-case : '))
compact = first_name.title() + ' ' + surname.title()
print(compact)