C-16-Q057mediumsingle_mcq
For test_variable = 73.07, print(type(test_variable)) will indicate the data type:
For test_variable = 73.07, print(type(test_variable)) will indicate the data type:
- aint
- bfloat
- cstr
- dbool
ব্যাখ্যা
The value 73.07 contains a decimal point, making it a fractional (floating-point) number. Python therefore classifies test_variable as type float.