一、IPython交互式shell
Python的解释器如今有多个语言的实现,包括:
CPython ——官方版本的c语言实现
ython ——可以运行在Java平台
IronPython ——可以运行在.NET和Mono平台PyPy —— Python实现的,支持JIT即时编译
1.PyCharm中
2.Ubuntu终端中
sudo apt install python3
sudo apt install ipython3
ipython3
退出解释器
exit()
二、使用PyCharm进行代码调试
三、新建py程序
运行
四、注释
单行注释
#单行注释
快捷键:选中注释字段 ctr + /
多行注释
'''
多行
注释
'''
五、Python 官方 PEP 代码规范
PEP 8 – Style Guide for Python Code | peps.python.org