Advertisements
Advertisements
प्रश्न
Give the output of the following when num1 = 4, num2 = 3, num3 = 2.
num1 += num2 + num3
print (num1)
उत्तर
num1 += 3 + 2
The above statement can be written as
num1 = num1 + 3 + 2 = 4 + 3 + 2 = 9
Therefore, print(num1) will give the output 9.
APPEARS IN
संबंधित प्रश्न
Which data type will be used to represent the following data values and why?
A resident of Delhi or not
Which data type will be used to represent the following data values and why?
Mobile number
Which data type will be used to represent the following data values and why?
Pocket money
Which data type will be used to represent the following data values and why?
Volume of a sphere
Which data type will be used to represent the following data values and why?
Name of the student
Which data type will be used to represent the following data values and why?
Address of the student
Give the output of the following when num1 = 4, num2 = 3, num3 = 2.
num1 = num1 ** (num2 + num3)
print (num1)
Give the output of the following when num1 = 4, num2 = 3, num3 = 2.
num1 **= num2 + num3
Give the output of the following when num1 = 4, num2 = 3, num3 = 2.
num1 = '5' + '5'
print(num1)
Give the output of the following when num1 = 4, num2 = 3, num3 = 2.
print(4.00 / (2.0 + 2.0))