- 12
What is the output of this pyCode x=2 y=10 x*=y*x+2 print(x)
4 Answers
+ 2
The Answer is 44
+ 1
2*=10*2+1
2*=20+1
2*=21
=21*2
=42
It's a correct answer
0
Its quite simple it is 44.
but you would have been done it for yourself if you want .
- 1
X=2
Y=10
X*=Y*X+1