Sunday, March 17, 2019

What's Your Name? - Hacker Rank Solution

You are given the firstname and lastname of a person on two different lines. Your task is to read them and print the following:
Hello firstname lastname! You just delved into python.
Input Format
The first line contains the first name, and the second line contains the last name.
Constraints
The length of the first and last name ≤ .
Output Format
Print the output as mentioned above.
Sample Input 0
Ross
Taylor
Sample Output 0
Hello Ross Taylor! You just delved into python.
Explanation 0
The input read by the program is stored as a string data type. A string is a collection of characters.

What's Your Name? - Hacker Rank Solution

Use + for string concatenation.
Problem Setter's code:
Python 2
a = raw_input()
b = raw_input()
print "Hello %s %s! You just delved into python." % (a, b)
Python 3
a = input()
b = input()
print("Hello %s %s! You just delved into python." % (a,b))
Problem Tester's code:
Python 2
a = raw_input()
b = raw_input()
print "Hello " + a + " " + b + "! You just delved into python."
Python 3
a = input()
b = input()
print ("Hello " + a + " " + b + "! You just delved into python.")

2 comments:

  1. what should i write in if statement ??
    i have just confusion in that only

    ReplyDelete
  2. u don't have to change the if statement. just write print statement.
    print("Hello " + a, b + "! You just delved into python.")

    ReplyDelete

Powered by Blogger.