728x90
python code
sentence = list(map(str, input().split()))
num = 0
for _ in range(10):
num = len(sentence)
print(num)
코드풀이
for _ in range(10):
num = len(sentence)
문장 (senctence)를 list에 넣고 리스트길이 len(sentence)를 구하고 이 값을 출력
'Python > 백준' 카테고리의 다른 글
#7 [python] 백준: 5622번 다이얼 (0) | 2023.08.01 |
---|---|
#6 [python] 백준 2908번: 상수 (0) | 2023.07.28 |
#4 [python] 백준 2566번: 최댓값 (0) | 2023.07.28 |
#3 [python] 백준 10813번: 공 바꾸기 (0) | 2023.07.26 |
#2 [python] 백준 10810번 공넣기 (0) | 2023.07.25 |