172k views
5 votes
What will be displayed by the following? my_value = 99 my_value = 0 print (my_value)

User Clstaudt
by
7.9k points

1 Answer

6 votes

Final answer:

The executed code assigns the variable 'my_value' first to 99 then to 0, and prints the current value of 'my_value', which is 0.

Step-by-step explanation:

When the following code is executed, the number 0 will be displayed:

my_value = 99
my_value = 0
print (my_value)

This is because the variable my_value is first assigned the value 99, but then it is reassigned the value 0 before the print function is called.

The latest assignment overrides the previous one, so the print function outputs the current value of my_value, which is 0.

User Dezigo
by
7.3k points