You are viewing a single comment's thread. Return to all comments →
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)
iam unable to get theoutput for the code it is giving the run time error
Seems like cookies are disabled on this browser, please enable them to open this website
I agree to HackerRank's Terms of Service and Privacy Policy.
What's Your Name?
You are viewing a single comment's thread. Return to all comments →
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)
iam unable to get theoutput for the code it is giving the run time error