What's Your Name? - HackerRank Python String Problem Solution

What's Your Name? - HackerRank Python String Problem Solution

Instructor-svg Al-Mamun Sarkar
Mar 23 , 2020

What's Your Name? - HackerRank Python String Problem Solution. Click here to see the problem.

Code:


def print_full_name(a, b):
    print("Hello " + a + " " + b + "! You just delved into python.")


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

 

 

Test Input:

Mamun
Sarkar

Test Output:

Hello Mamun Sarkar! You just delved into python.
  • Share On:
  • fb
  • twitter
  • pinterest
  • instagram