목 차Ⅰ. 프로그래밍 문제 Ⅰ. 프로그래밍 문제문제 1.for 반복문을 이용해서 문자열의 count() 메소드와 똑같은 일을 하는 코드를 작성하라즉, 하나의 단어와 알파벳을 입력받아서 입력 단어에 알파벳이 몇 번 나오는지를 출력한다 /* 출력 결과 */Enter one string : programmingEnter one character : mcount : 2 풀이)/* 2026_01_15 풀이 */input_word = input("Enter one string : ")input_char = input("Enter one character : ")count = 0for n in input_word: if n == input_char: count += 1print(f'count : ..