Python复习要点1、Python基础知识版本问题输入/输出:input()print()格式化输出2、基础数据类型3、运算符4、表达式:合法性5、序列:列表:字典:键值对元组:字符串:6、程序结构顺序选择:if循环:for循环、while循环,break、continue7、函数内置函数range()、ord()、chr()、int()、len()、type()等自定义函数:def函数名():8、模块与面向对象编程内置模块:random、turtle、tkinter、sqlite3、string、reRandom模块中range()为0~1String模块:书上的一些方法9、异常处理try的几种格式finally的功能list=[5,6,7]lists=list