Robotics & Artificial Intelligence
Python has a built-in type() function to ascertain the data type of a specific value. Predict the data type of the given Python statement:
m=32
n=float(m)
print(type(n))
Related Questions
Predict the output of the following snippet:
wd="Robotics" print(len(wd))Predict the output of the following snippet:
List1=["Happy", "New", "Year", 2026] print(len(List1))Predict the data type of the given Python statement:
a=42.85 b=int(a) print(type(b))Predict the data type of the given Python statement:
m=12E4 print(type(m))