龙听期货论坛's Archiver

C
+
+


 微信: QQ:

龙听 发表于 2024-3-10 14:21

Python基础知识 -【数字(Number)类型】

python中数字有四种类型:整数、布尔型、浮点数和复数。

    int (整数), 如 1, 只有一种整数类型 int,表示为长整型,没有 python2 中的 Long。
    bool (布尔), 如 True。
    float (浮点数), 如 1.23、3E-2
    complex (复数), 如 1 + 2j、 1.1 + 2.2j

页: [1]