My code looks like this:
firstValue = "First Value Key"
secondValue = "Second Value Key"
thirdValue = "Third Value Key"
Dictionary = {"0":firstValue,
"1":secondValue,
"2":thirdValue}
print(Dictionary["0"])
firstValue = "New Value"
print(Dictionary["0"])
The output is the following:
First Value Key
First Value Key
And I want the output to look like this:
First Value Key
New Value
What am I missing?