본문 바로가기
코딩테스트/Python

프로그래머스 스쿨 - 공백으로 구분하기(Python)

by 보안매크로 2023. 8. 23.
728x90
def solution(my_string):
    answer = my_string.split(' ')
   
    return answer
728x90