0
Can anyone help me with this question?
X = 4 X = 5 Print
3 odpowiedzi
+ 1
I haven't done python yet but I think the variable "X" will get over written because first X=4 then X gets new value which is X=5 so the up-to-date value for "X" is 5 and the ooutput should be 5
+ 2
A variable is work as a storing place of data.
First variable X stored its value as 4.
When X takes new value 5 then Old value of variable X (here 4) is wiped out and new value 5 is stored .
So when we command print(x)
then it shows its value 5 as output.