Advertisements
Advertisements
प्रश्न
Write a logical expression corresponding to the following statement in Python and evaluate the expressions (assuming variables num1, num2, num3, first, middle, and last are already having meaningful values):
6.75 is between the values of integers num1 and num2.
एका वाक्यात उत्तर
उत्तर
(6.75 >= num1) and (6.75 <= num2)
shaalaa.com
Number
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
Write a logical expression corresponding to the following statement in Python and evaluate the expressions (assuming variables num1, num2, num3, first, middle, and last are already having meaningful values):
num3 is not more than 24.
Write the output of the following:
num1 = 4
num2 = num1 + 1
num1 = 2
print (num1, num2)
Write the output of the following:
num1, num2 = 2, 6
num1, num2 = num2, num1 + 2
print (num1, num2)
Write the output of the following:
num1, num2 = 2, 3
num3, num2 = num1, num3 + 1
print (num1, num2, num3)
Write a program to find the average of three numbers.