4.Write the output of
x=5
y=10
x=y
z=x*y
print(x,y,z*2)
Answers
Answered by
0
Answer:
The output of the program is easy
Explanation:
I'm sending a photo to help, but the output will be:
10, 10, 200
Because
x = 5
y = 10
and x = y that means x = 10
and z = x * y so z = 10*10 = 100
Thus, print(x,y,z*2) will give 10 10 200
Attachments:
Similar questions