What is the value of x after running this code:
x = 12.2 y = 14 x = 100 print(x)
100
It will cause an Error because using the same variable again
14
12.2