(백준) 18409 – 母音を数える (모음 세기) (Python)
문제 #18409: 母音を数える (모음 수) (acmicpc.net) 18409: 母音を数える(모음수) 길이 N の英小文字Karanaru S が与えられる.S のうち母音字の個数,Tsumari a,i,u,e,o の個数の総和を求めよ. www.acmicpc.net 설명 모음알파벳이 몇 개인지 출력하는 문제입니다. 이것은 Python의 계수 기능을 사용하여 쉽게 해결됩니다. N = int(input()) S = input() print(S.count(“a”) + S.count(“i”) + S.count(“u”) + S.count(“e”) + S.count(“o”))