注释
- 单行注释
Python中单行注释以#开头,例如:
#这是一个单行注释
print('hello,world!')
- 多行注释
多行注释用三个单引号'''或者三个双引号"""将注释扩起来,例如:
'''
这是多行注释
用单引号
'''
常用快捷键(mac)
- 保存 Command + S
- 查找 Command + F
- 注释 Command + /
- 剪切 Command + X
- 复制 Command + C
- 粘贴 Command + V
- 撤销 Command + Z
- 替换 Command + Option + F
- 终止程序 Control + c
常用命令
- 查看已有的第三方包 pip list
- 下载第三方包 pip install 包名
- 卸载第三方包 pip uninstall 包名