Skip to main content

What's Your Name? Hackerrank Solution python

 What's Your Name? Hackerrank Solution

For Explanation Watch Video:


Sample Input 0

Ross
Taylor

Sample Output 0

Hello Ross Taylor! You just delved into python.
Code:
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)

Comments