import types
a=1
print type(a)==types.IntType,
#####################################
#line to beautiful###################
#####################################
if isinstance('w',int):
print 'yeah, this is a number'
else:
print('no a number')
#output True no a number