Advertisements
Advertisements
प्रश्न
Give the output of the following when num1 = 4, num2 = 3, num3 = 2.
num1 = float(10)
print (num1)
टिप्पणी लिखिए
उत्तर
num1 = float(10)
float(10) will convert the integer value to float value and therefore, the output will be 10.0.
shaalaa.com
Variables
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
Write the corresponding Python assignment statement:
Assign 10 to variable length and 20 to variable breadth.
Write the corresponding Python assignment statement:
Assign the average of values of the variable's length and breadth to a variable sum.
Write the corresponding Python assignment statement:
Assign a list containing strings ‘Paper’, ‘Gel Pen’, and ‘Eraser’ to variable stationery.
Write a program to swap two numbers using a third variable.
Write a program to swap two numbers without using a third variable.