Say, I have the following dictionary in Python:
dict = {'YoMama': 'hot', 'temp_min': '100', 'temp_max': '200'}
I know you can access them by their 'key' names but how do you access them with their numbers? [0], 1
If I want to access the second 'key' name (temp_min)
ex:
print(dict.keys()[1])
OR
If I want to access just the first value (hot)
ex:
print(dict.values()[1])
How do you accomplish this please?