Back
It's pretty simple, just use:
print(type(variable_name))
Or
You can also use type :
>>> type(one)<type 'int'>
Happy learning....!!
You can try this:
>>> i = 123>>> type(i)<type 'int'>
>>> i = 123
>>> type(i)
<type 'int'>
You can use the following video tutorials to clear all your doubts:-
31k questions
32.8k answers
501 comments
693 users