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
3
- 54
- 4 6 3
- 16 4 7
Hope it helps....
Similar questions