CodingTest

[파이썬 코딩 도장] 24.5 심사문제: 특정 단어 개수 세기

nineDeveloper 2020. 11. 27.
728x90

정답

import string
x=str(input())
a=[]
for i in x:
  a.append(i.translate(x.maketrans('','',string.punctuation)))
x=''.join(a)
x = x.split()
print(x.count('the'))
728x90

댓글

💲 추천 글