What's Your Name?

Sort by

recency

|

1394 Discussions

|

  • + 0 comments
    def print_full_name(first, last):
        print(f'Hello {first} {last}! You just delved into python.')
    
  • + 0 comments

    def print_full_name(first, last): print('Hello {} {}! You just delved into python.'.format(first,last))

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

  • + 0 comments

    Beware the final full stop! One sentence gives you the expected output without a full stop (in among the sentence about it, in quote marks), others show it with a full stop and it expects a full stop there.

  • + 0 comments
    def print_full_name(first, last):
        # Write your code here
        return print(f"Hello {first} {last}! You just delved into python.")
    
  • + 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)