Python Datatype Example


Program
a=20 b="Hello Fresherbell" c=20.339 d=True print(type(a)) print(type(b)) print(type(c)) print(type(d))
Input
Output