Python 解释器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 解释器相关的知识,希望对你有一定的参考价值。

Python 解释器

关于python 环境 这里不再介绍,可参考以下介绍:

Mac Anaconda 简单介绍 -- 环境管理

交互式编程

我们可以在命令提示符中输入"python"命令来启动Python解释器:

(Adil) yangyaojundeMacBook-Pro:PyWeb yyj$ python
Python 3.7.1 (default, Oct 23 2018, 14:07:42) 
[Clang 4.0.1 (tags/RELEASE_401/final)] :: Anaconda, Inc. on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> 

在 python 提示符中输入以下语句,然后按回车键查看运行效果:

print ("Hello, Python!");

 

以上命令执行结果如下:

Hello, Python!

 

脚本式编程

新建 test.py文件

# FileName : test.py
# Author   : Adil
# DateTime : 2019/1/22 4:04 PM
# SoftWare : PyCharm


print(\'hello python !\')

 

通过以下命令执行该脚本:

 

python test.py

输出结果为:

(Adil) yangyaojundeMacBook-Pro:PyWeb yyj$ python test.py 
hello python !

在Linux/Unix系统中,你可以在脚本顶部添加以下命令让Python脚本可以像SHELL脚本一样可直接执行:

#! /Users/yyj/anaconda3/envs/Adil/bin/python

修改后如下:

#! /Users/yyj/anaconda3/envs/Adil/bin/python
# 以上为python 环境变量,通过 which python 获取

# FileName : test.py
# Author   : Adil
# DateTime : 2019/1/22 4:04 PM
# SoftWare : PyCharm


print(\'hello python !\')

然后修改脚本权限,使其有执行权限,命令如下:

$ chmod +x test.py

 

执行以下命令:

./test.py

输出结果为:

(Adil) yangyaojundeMacBook-Pro:PyWeb yyj$ ./test.py 
hello python !

 

以上是关于Python 解释器的主要内容,如果未能解决你的问题,请参考以下文章

有趣的 C++ 代码片段,有啥解释吗? [复制]

需要对特定 R 代码片段的解释

有人可以解释以下 R 代码片段吗? [关闭]

有人可以解释啥是 SVN 平分算法吗?理论上和通过代码片段[重复]

[Python3] 043 多线程 简介

python多线程