1. 특정 문자 개수 구하기
만든이 : 화난 호떡
2. 문제정보
3. 풀이
# -*- coding: utf-8 -*-
# UTF-8 encoding when using korean
user_input = input()
found = input()
print(user_input.count(found))
간단한 함수 count를 활용하여 쉽게 구하는 방법과 string 문자를 반복문을 활용하여 갯수를 새는 방법이 있다
4. 결과
# -*- coding: utf-8 -*-
# UTF-8 encoding when using korean
user_input = input()
found = input()
print(user_input.count(found))
'Goorm ide 코딩 문제 > Level 1' 카테고리의 다른 글
[Goorm LEVEL 1] 파도 센서 (0) | 2021.04.18 |
---|---|
[Goorm LEVEL 1] 가위바위보 (0) | 2021.04.18 |
[Goorm LEVEL 1] 모양찍기 (0) | 2021.04.14 |
[Goorm LEVEL 1] Substring (0) | 2021.04.14 |
[Goorm LEVEL 1] 3의 배수 게임 (0) | 2021.04.14 |