로딩
요청 처리 중입니다...

해커랭크 Practice Python String Split and Join

 해커랭크 Practice  Python String Split and Join

문제 Sample Input this is a string Sample Output this-is-a-string 풀이 def split_and_join(line): return line.replace(' ','-') # write your code here if __name__ == '__main__': line = input() result = split_and_join(line) print(result) https://www.hackerrank.com/challenges/python-string-split-and-join/problem...

해커랭크 Practice Python String Split and Join에 대한 요약내용입니다.

자세한 내용은 아래에 원문링크를 확인해주시기 바랍니다.