Python dołącz do dwóch list jako słownik
# using zip()
# to convert lists to dictionary
# initializing lists
test_keys = ["Rash", "Kil", "Varsha"]
test_values = [1, 4, 5]
res = dict(zip(test_keys, test_values))
Gerson marques