Logo

Programming-Idioms

History of Idiom 94 > diff from v5 to v6

Edit summary for version 6 by :

Version 5

2015-10-29, 14:05:17

Version 6

2015-10-31, 16:01:38

Idiom #94 Print type of variable

Print the name of the type of x. Explain if it is a static type or dynamic type.

This may not make sense in all languages.

Idiom #94 Print type of variable

Print the name of the type of x. Explain if it is a static type or dynamic type.

This may not make sense in all languages.

Code
print(type(x))
# OR
print(x.__class__)