Problem F: 동국대 파이썬프로그래밍 기초 기말고사 6번

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

무작위 문자열이 띄어쓰기를 기준으로 들어올 때, 해당 문자열들을 list로 만든 후

list_to_string 함수에 집어 넣어서 하나의 문자열로 변환해주는 함수 list_to_string을 만들어보세요.

Sample Input Copy

ab bc cd

Sample Output Copy

abbccd

HINT

def list_to_string(a):
# 이 함수를 작성해주세요
# indentation error가 난다면 띄어쓰기 방식을
# tab이나 spacebar 4번으로 통일해주세요.
result = ""
return result


# 이 밑 부분은 손대지 말아주세요
list1 = input().split()
print(list_to_string(list1))