백준 / 문서 검색 / 1543

1533 단어 python백준python

Question

문제링크
Silver 4

Logic

  1. replace함수를 이용하여 원하는 단어를 '*'로 변환한다.
  2. 그 후 '*'의 갯수를 센다.

Code

from sys import stdin
raw = stdin.readline().rstrip()
data = stdin.readline().rstrip()
print(raw.replace(data,'*').count('*'))

좋은 웹페이지 즐겨찾기