What's Your Name?

  • + 0 comments

    def print_full_name(first, last): hello= "Hello %s %s! You just delved into python." % (first,last) print (hello)

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