1. python软件使用问题,运行特别慢,
解决:你在运行在console,这个修改下,操作步骤:在 run -> edit configurations -> run with python console 取消勾选即可
2. python程序基本格式
① python区分大小写
② Python用缩进而不是{}表示程序块
③ 注释:单行# 、多行(三个连续单引号''')
3. 图形化程序设计
① turtle.penup 抬笔
② turtle.pendown 落笔
③ turtle.width
④ turtle.color
4. python行连接符 : \
5. 引用
① python是动态类型语言,不需要声明
② Python是强类型语言:每个对象都有数据类型,只支持该类型支持的操作
6. shell中直接快速出现Python文档: 快捷键 f1
7.变量
① 必须先声明,a = 10