작성
·
191
0
def value_key_call(a):
if a in t.values() :
value_list = list(t.values())
key_list = list(t.keys())
idx_of_value = list(t.values()).index(a)
result = key_list[idx_of_value]
return result
else :
t = {}
t = {'a':1, 'b':2, 'c':3, 'd':4, 'e':5}
print(value_key_call(input("values : ")))
=======
t = {}
이 부분에서 자꾸 indentation error가 뜨는데 이유를 잘 모르겠습니다. 확인 부탁드리겠습니다 :)
답변 2
1
0