| 123456789101112131415161718192021222324 |
- """
- 检查变量的类型
- Version: 0.1
- Author: 骆昊
- Date: 2018-02-27
- """
- a = 100
- b = 1000000000000000000
- c = 12.345
- d = 1 + 5j
- e = 'A'
- f = 'hello, world'
- g = True
- print(type(a))
- print(type(b))
- print(type(c))
- print(type(d))
- print(type(e))
- print(type(f))
- print(type(g))
|