728x90
python code
dial = ['ABC', 'DEF', 'GHI', 'JKL', 'MNO', 'PQRS', 'TUV', 'WXYZ']
a = input()
ret = 0
for j in range(len(a)):
for i in dial:
if a[j] in i:
ret += dial.index(i)+3
print(ret)
문법 memo
.index : 문자열 순서 번호
'Python > 백준' 카테고리의 다른 글
#9 [python] 백준 10156번: 과자 (0) | 2023.10.17 |
---|---|
#8 [python] 10817 백준 파이썬 : 세 수 (0) | 2023.10.16 |
#6 [python] 백준 2908번: 상수 (0) | 2023.07.28 |
#5 [python] 백준 1152번: 단어의 개수 (0) | 2023.07.28 |
#4 [python] 백준 2566번: 최댓값 (0) | 2023.07.28 |