note01.py
# python learning note 01
print('Hello world!')
a = 10
print a
print type(a)
a = 1.3
print a,type(a)
print
a = True