ブリブリ備忘録 おっ、python

HackerRankの問題とコメント(python3) 拙いですが...

What's Your Name?

・問題

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.

ソースコード

def print_full_name(a, b):
    list=['Hello ',a,' ',b,'! You just delved into python.']
    list=''.join(list)
    print(list)

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

・コメント

あまり面白くない問題。

一行目にfirst name,二行目にlast nameが書かれた入力からそれらを読み取り、適当な文章に放り込むだけ。

・URL

https://www.hackerrank.com/challenges/whats-your-name/problem