Answers for "check datatype python"

6

how to find the datatype of a variable in python

# you can use the function type() which will returns the type of the variable
A = "Hello world !"
# here are some uses of it
>>> type(A)
<class 'str'>
>>> type(A) is int
False
>>> type(A) is str
True
Posted by: Guest on May-18-2021
0

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

Python Answers by Framework

Browse Popular Code Answers by Language