Title Case Name Formatting

  • Share this:

Code introduction


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()