Computer Science, asked by mehwishh, 2 months ago

16)
Give the output of the following code
X=100
X=X+100
X=x-5
print(x)
x,y=x-5,190
print(x,y)

Answers

Answered by Anonymous
3

18)

Find the output produced by the following code-

a, b =10,25

if a >= b:

c= a + b

else:

c=a-b

C=C*2

print ("result = ", c)

___________________________________________________________€__________________

Similar questions