Computer Science, asked by kimchaehyung7, 17 days ago

What will be the output of the following in python?
1. a=20
b=a+1
a=33
print(a+b)

2. a,b=3,4
a,b,c=b,a+3,b-1
print(a,b,c)

3. a,b=3,4
c,a=b*4,a+04
print(a,b,c)

Answers

Answered by purveshKolhe
3

\huge{\red{\overbrace{\underbrace{\mathfrak{\purple{answer::}}}}}}

  1. 54
  2. 4 6 3
  3. 16 4 7

Hope it helps....

Similar questions