What's Your Name?

  • + 1 comment

    def print_full_name(first, last): # Write your code here print("Hello "+first+" "+last+"! You just delved into python.")

    if name == 'main': first_name = input() last_name = input() print_full_name(first_name, last_name)