03-Python执行方式和Pycharm设置

https://www.python.org/ 

 单词列表

* error 错误
* name 名字
* defined 已经定义
* syntax 语法
* invalid 无效
* Indentation 索引
* unexpected 意外的,不期望的
* character 字符
* line 行
* encoding 编码
* declared 声明
* details 细节,详细信息
* ASCII 一种字符编码
Python 的解释器 如今有多个语言的实现,包括:
- CPython —— 官方版本的 C 语言实现
- Jython —— 可以运行在 Java 平台
- IronPython —— 可以运行在 .NET 和 Mono 平台
- PyPy —— Python 实现的,支持 JIT 即时编译

 IPython 的安装

$ sudo apt install ipython
  • Python 2.x 使用的解释器是 ipython

  • Python 3.x 使用的解释器是 ipython3

猜你喜欢

转载自www.cnblogs.com/hbzxpost/p/10441287.html