백준 알고리즘 - 10809번: 알파벳 찾기(Python)
<Try 1>
from string import ascii_lowercase
alphabet_list = list(ascii_lowercase)
S = [str(input())]
for i in range(len(S)):
if S[i] in alphabet_list:
print(alphabet_list.find(S[i]))
i += 1
else:
print(-1)
입력값을 baekjoon으로 했는데 답이 -1로 나옴.
조금 단순하게 아스키코드를 사용 & find함수 사용하기로 했음.
<Try 2>
S = input()
alphabet = list(range(97, 123))
for i in alphabet:
print(S.find(chr(i)))
Author And Source
이 문제에 관하여(백준 알고리즘 - 10809번: 알파벳 찾기(Python)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@alexms0316/백준-알고리즘-10809번-알파벳-찾기Python저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)