#!/usr/bin/python def test001(): a = 100 print(type(a)) b = 1.3 print(type(b)) print(type(a), type(b)) if __name__ == '__main__': test001()