C-16-Q056mediumsingle_mcq
To find the data type of a variable in Python we use:
To find the data type of a variable in Python we use:
- a
datatype() - b
kind() - c
type() - d
dtype()
ব্যাখ্যা
Python provides the built-in type() function, which returns the data type of whatever value or variable is passed to it. The other listed names are not valid Python functions for this purpose.