美文网首页廖雪峰的python基础教程学习笔记
Python学习笔记(一)基本数据类型

Python学习笔记(一)基本数据类型

作者: 晶爷传说 | 来源:发表于2018-02-13 08:06 被阅读0次

    1. 整数

    可直接使用十进制,也可使用十六进制表示,如:

    >>>print(0xff)
    255
    

    2. 浮点数

    对于小数点比较大的浮点数,如1.45x1010,使用如下表示方式:

    f = 1.45e10
    

    3. 字符串

    主要是print的表示方式,有三种,分别是:
    ·单引号:' '(字符串中使用 ' 等特殊字符时,必须使用转义字符 "" )
    ·双引号:" "(字符串中使用 ' 时,可不用转义字符 "" ,直接输出)
    ·三引号:''' '''(可以进行多行输出)

    >>> print('There\'s a tab here:\t!')
    There's a tab here: !
    >>> print("There's a tab here:\t!")
    There's a tab here: !
    >>> print('''line1
    ... line2
    ... line3''')
    line1
    line2
    line3
    

    字符串中转义字符过多时,可使用r' ',其中' '中间的部分不会进行转义处理,如:

    >>> print(r'\'\t')
    \'\t
    

    同理,也有r''' '''的写法,其中''' '''中的部分依然不会进行转义处理,如:

    >>> print(r'''good job!\n
    ... keep on!''')
    good job!\n
    keep on!
    

    4. 布尔值

    True和false,没有更特别的地方

    5. 空值

    空值是python里的一个特殊值,用None表示

    相关文章

      网友评论

        本文标题:Python学习笔记(一)基本数据类型

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