Answers for "python check data type"

22

how to check the type of a variable in python

print(type(x))
Posted by: Guest on May-28-2020
1

check datatype python

a = 123
 
b = 'Hello'
 
print('Is a an instance of str?', isinstance(a, str))
print('Is b an instance of str?', isinstance(b, str))
Posted by: Guest on July-27-2021
5

what is the type of the data python

>>> type(1234)
<class 'int'> 
>>> type(55.50) 
<class 'float'>  
>>> type(6+4j)   
<class 'complex'> 
>>> type("hello") 
<class 'str'>     
>>> type([1,2,3,4]) 
<class 'list'>      
>>> type((1,2,3,4)) 
<class 'tuple'>     
>>> type({1:"one", 2:"two", 3:"three"}
<class 'dict'>
Posted by: Guest on March-28-2020

Python Answers by Framework

Browse Popular Code Answers by Language