Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

type() Function in python

>>> print(type(7), type(7.5), type('hello'), type(int))
<class 'int'> <class 'float'> <class 'str'> <class 'type'>
Source by softhunt.net #
 
PREVIOUS NEXT
Tagged: #Function #python
ADD COMMENT
Topic
Name
6+1 =