美文网首页
Python初学笔记一

Python初学笔记一

作者: 啰嗦ing | 来源:发表于2019-02-22 14:25 被阅读19次

    #注释    

    #这是单行注释

    ‘’‘

    这是多行注释

    ’‘’

    import numpy as np

    from collections import Counter

    for x in range(1, 101): 

         print("fizz"[x % 3 * len('fizz')::] + "buzz"[x % 5 * len('buzz')::] or x)

    1、字符串

        1.1 Python中如何使用字符串

        a 使用单引号(')

        str='this is string';

        print(str)

        b 使用双引号(")

        str="this is string"

        pringt(str)

        c 使用三引号(''')

        利用三引号,表示多行的字符串,可以在三引号中自由的使用单引号和双引号,例如:

        str=str='''this is string

        this is pythod string

        this is string'''

        print(str)

    2 、布尔类型

       bool=False;

        print bool;

        bool=True;

        print (bool);   

    3、整数

        int=10

        print(int)

    4、浮点型

        float =1.1

        print(float)

    5、数字

        包括整数,浮点数

        5.1 删除变量

        a=1

        b=2

        c=3

        del a

        del b,c

        pring(a) #删除变量a之后再引用a,就会报错

    OK,这些是Python注释方式和基本数据类型。

    相关文章

      网友评论

          本文标题:Python初学笔记一

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