美文网首页程序员
python 基础知识

python 基础知识

作者: 森先生_wood | 来源:发表于2015-10-15 11:29 被阅读115次

    (1)除法

    >>>1/2

    0

    1,普通除法:浮点型

    >>>1.0/2.0

    0.5

    >>>1.0/2

    0.5

    >>>1/2.0

    0.5

    2,普通除法:导入模块

    >>>from __future__ import division

    3,整除

    >>>1.0//2.0

    0.0

    (2)幂运算符(乘方)

    >>>-3**2

    -9

    >>>(-3)**2

    9

    (3)十六进制与八进制

    >>>0X4F

    175

    >>>010

    8

    (4)输入

    >>>a=input("The number:")

    a的类型就是输入的类型

    >>>a=raw_input(""The number")

    a的类型是字符型

    (5)长字符串,原始字符串和Unicode

    >>>"""hello

    world"""

    >>>r"c:\nowhere"

    不进行转义

    >>>u"欢迎进入"

    默认为8位ASCII码,Unicode字符串存储为16位Unicode字符

    相关文章

      网友评论

        本文标题:python 基础知识

        本文链接:https://www.haomeiwen.com/subject/ccaocttx.html