Articles → Python → Type Function In PythonType Function In PythonIn this article, we will discuss the type function in Python.Purpose The type function specifies the type of the variable.Example x = 24 print("Type of Variable x is:", type(x))Output Posted By - Karan Gupta Posted On - Thursday, April 11, 2019 Query/Feedback Your Email Id** Subject* Query/Feedback Characters remaining 250**
x = 24 print("Type of Variable x is:", type(x))
Query/Feedback