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