ブリブリ備忘録 おっ、python

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

String Split and Join

・問題

In Python, a string can be split on a delimiter.

Example:

>>> a = "this is a string"
>>> a = a.split(" ") # a is converted to a list of strings. 
>>> print a
['this', 'is', 'a', 'string']

Joining a string is simple:

>>> a = "-".join(a)
>>> print a
this-is-a-string 

Task 
You are given a string. Split the string on a " " (space) delimiter and join using a - hyphen.

Input Format 
The first line contains a string consisting of space separated words.

Output Format 
Print the formatted string as explained above.

Sample Input

this is a string   

Sample Output

this-is-a-string

ソースコード

def split_and_join(line):
    line=line.split(" ")
    line="-".join(line)
    return line    

if __name__ == '__main__':
    line = input()
    result = split_and_join(line)
    print(result)

・コメント

標準入力で与えられたスペースを含む文字列のスペースをハイフンに置き換える問題。

問題文の指示に従って行けばいいので難しくはないが、今後の問題でも頻出なので重要。

まず、スペースで区切ってリストに入れた後に、中身を抽出しハイフンで区切ればよい。

・URL

https://www.hackerrank.com/challenges/python-string-split-and-join/problem