Computer Science, asked by CaramelChief, 1 year ago

Predict the output of the following
x,y=7,2
x,y,x=x+1,y+3,x+10
print(x,y)​

Answers

Answered by zeba1240
25

Answer:

17 5

Explanation:

python evaluates from left to right...so the last value given will be the final one

Similar questions