Find output :
a)
x,y = 2,7
z,x= y+2,10
print (“x= “, x, “y= “,y,”z= “,z)
b)
x,y=20,30
print ( x,y, sep=”#”,end =”%%%”)
print (“The End”)
c)
Q=1
while Q<3:
print (Q)
Q=Q+1
d)
W=45
while(W>50)
W=W+1
print(W)
Answers
Answered by
0
Answer:
Yes.........................
Similar questions