단어 길이 재기

import sys


def main():
    input = sys.stdin.readline

    word = input().rstrip()
    print(len(word))


main()

문자열의 길이

len 함수를 이용하여 문자열의 길이를 구할 수 있습니다.

word = "Hello"
print(len(word))  # 5
word = ""
print(len(word))  # 0
댓글