Answers for "how to see type of value in python"

22

how to get the type of a variable in python

age = 28
#To get the type us following command
print(type(age))
Posted by: Guest on June-30-2021
0

python get type of variable

>>> i = 123
>>> type(i)
<type 'int'>
>>> type(i) is int
True
>>> i = 123.456
>>> type(i)
<type 'float'>
>>> type(i) is float
True
Posted by: Guest on February-04-2021

Code answers related to "how to see type of value in python"

Python Answers by Framework

Browse Popular Code Answers by Language