(
a, b = 12, 13
c, b = a*2, a/2
print (a, b, c)
Answers
Answered by
3
Answer:
12 6 24
Explanation:
since you wrote print(a,b,c)
in second line we see that c and b are doing operations on a ( ignore b=13 because b is replaced by a/2 in the second line )
so a is always going to be 13 .
while c= a*2 so a=12
this implies that c=12*2=24.
whereas b=a/2 so a=12
this implies that b=12/2 = 6.
and so print (a,b,c) gives
12 6 24
Similar questions
Math,
6 months ago
Social Sciences,
6 months ago
English,
6 months ago
Math,
1 year ago
Social Sciences,
1 year ago
History,
1 year ago
History,
1 year ago