You can download this code by clicking the button below.
This code is now available for download.
Formats given names into a title case full name.
Technology Stack : String formatting
Code Type : String processing
Code Difficulty : Beginner
def format_name(first, last):
full_name = f"{first} {last}"
return full_name.title()