코딩테스트/Python

프로그래머스 스쿨 - 편지(len 공백도 계산함)(Python)

보안매크로 2023. 9. 28. 18:17
def solution(message):
    answer = len(message) * 2
    return answer