26. Find out the output of the Follow
x=20
X=X+5
X=X-10
print (x)
x,y=x-1,50
print (x,y)
Answers
Answered by
5
Answer:
26. Find out the output of the Follow
x=20
X=X+5
X=X-10
print (x)
x,y=x-1,50
print (x,y)
yyyyvvv
Explanation:
Answered by
0
Answer:
The output is 50 30
The first line assigns 20 to x and 60 to y.
So, we havethe values of x = 20 and y = 60.
Next, 'y-10' is assigned to variable x.
So, x = y - 10 = 60 - 10 = 50
Again 'x+10' is assigned to variable y.
So, y = x + 10 = 20 + 10
Next, the values of x and y are printed in order.
So, output is:
50 30
Similar questions