What's Your Name?

You are given the firstname and lastname of a person on two different lines. 

Solution



Download Source Code

Post a Comment

1 Comments

  1. #Using .format also we can solve this
    def print_full_name(a, b):
    print("Hello {} {}! You just delved into python.".format(a,b))
    return a,b

    if __name__ == '__main__':
    first_name = input()
    last_name = input()
    print_full_name(first_name, last_name)

    ReplyDelete