CodingTest

[파이썬 코딩 도장] 27.6 심사문제: 특정 문자가 들어있는 단어 찾기

nineDeveloper 2020. 12. 5.
728x90

정답

with open('words.txt', 'r') as file:
  text = file.readline()
  words=text.split()
  for word in words:
    if 'c' in word:
      print(word.strip(',.'))
728x90

댓글

💲 추천 글