Find output of the following python code: a,b,c=10,12,15 b%=ac**=b. print(a) print(b) print(c) print(“Well Done”)a,b,c=10,12,15
b%=a
c**=b
print(a)
print(b)
print(c)
print(“Well Done”)
Answers
Answered by
2
Answer:
10
2
225
Well Done
This will be the output that gets generated for code given above.
Similar questions