Give the output of the following when num1 = 4, num2 = 3, num3 = 2
a) num1 += num2 + num3
print (num1)
b) num1 = num1 ** (num2 + num3)
print (num1)
c) num1 **= num2 + c
num1 = '5' + '5'
print(num1)
d) print(4.00/(2.0+2.0))
e) num1 = 2+9*((3*12)-8)/10
print(num1)
Answers
Answered by
1
- i hope this will be helpful for your
Attachments:
Similar questions