What's Your Name?

Sort by

recency

|

1399 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):

    # Write your code here
    
    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)
    

    `

  • + 1 comment

    def print_full_name(first, last): 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)

    • + 0 comments

      iam unable to get theoutput for the code it is giving the run time error

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