@songying
2018-07-18T10:38:36.000000Z
字数 205
阅读 1105
python数据类型
Number, String, List, Tuple, Sets, DIctionary.
python3支持int, float, bool, complex (4 + 3j).
注意:
在 Python2 中是没有布尔型的,它用数字 0 表示 False,用 1 表示 True。到 Python3 中,把 True 和 False 定义成关键字了,但它们的值还是 1 和 0,它们可以和数字相加。