• 变量
      • 变量区分大小写
      • 全局变量:在函数外面创建的对象
        • 要在函数内使用全局变量,使用global修饰
    • 随机数 可用于制作随机数的内建模块 **Random**
      • import random
      • print(random.randrange(1,10))
    • 内置方法

      • len()
      • strip() 去除收尾空格
      • replace()
      • in
        • txt = “China is a great country”
        • x = “ina” in txt
      • format()** {0} 匹配填充位置**
        • age = 63
        • txt = “My name is Bill, and I am {}”
        • print(txt.format(age))
    • 内置函数

      • isinstance()
        • x=200
        • print(isinstance(x,int))
    • 集合数据类型
      • list:有序 可改变 允许重复
        • [0,-1]
        • 循环遍历
          • for x in xx
        • 是否存在
          • if “cc” in list
        • 增(append,)删(pop,del,clear)插 (insert)复制(copy,list)
        • 两个list合并(extend,遍历后append)
      • tuple:有序 不可改变 允许重复
        • 元组和列表之间转化
        • tuple(“sss”,)
        • 创建元组双括号
      • set:无序 无索引 不重复
      • dict:无序 可变 有索引 没有重复