Computer Science, asked by abhijeetchampawat200, 5 months ago

Output of the following code:

X=17

ifX>=17:

X+=10

else:

X-=10

print(X)​

Answers

Answered by devigeeta1387
1

Answer:

free dimand and I will send it to

Answered by divesh638218
0

Answer:

27

Explanation:

if the x>=17: (is true)

x+=10

the the x=17+10

=27

Similar questions