Answer the question
In order to leave comments, you need to log in
A for loop to determine if a list is nested in a dictionary?
described the essence of the problem in comments. thanks for the help!
courses = {
'RUB' : ['Рубль', 'Ruble', 'RUB'],
'USD' : ['Доллар', 'Dollar', 'USD']
#ключи и значения курсов
}
from_course= str(input("")) #с этой валюты (например с доллара)
to_course = str(input("")) #позже программа будет переводить курс к этой валюте.
#здесь я пробовал делать цикл for, но пока тщетно
#нужно проверить, есть ли например в словаре с курсами USD и RUB, чтобы потом их использовать
#то есть, допустим пользователь вводит "Рубль" и "Доллар", а код должен проверять его наличие, а точнее
#эквивалент в словаре, то есть "Доллар, Dollar или USD" - это USD.
Answer the question
In order to leave comments, you need to log in
for keys, values_list in courses.items():
if from_course in values_list:
print('Есть совпадение.')
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question