Linux/Unix的系统上,一般默认的 python 版本为 2.x,我们可以将 python3.x 安装在 /usr/local/python3 目录中。
安装完成后,我们可以将路径 /usr/local/python3/bin 添加到您的 Linux/Unix 操作系统的环境变量中,这样您就可以通过 shell 终端输入下面的命令来启动 Python3 。
1
2
3
|
$ PATH = $PATH: / usr / local / python3 / bin / python3 # 设置环境变量
$ python3 - - version
Python 3.4 . 0
|
在Window系统下你可以通过以下命令来设置Python的环境变量,假设你的Python安装在 C:\Python34 下:
1
|
set path=%path%;C:\python34
|
交互式编程
我们可以在命令提示符中输入"Python"命令来启动Python解释器:
1
|
$ python3
|
执行以上命令后,出现如下窗口信息:
1
2
3
4
5
|
$ python3
Python 3.4.0 (default, Apr 11 2014, 13:05:11)
[GCC 4.8.2] on linux
Type "help" , "copyright" , "credits" or "license" for more information.
>>>
|
在 python 提示符中输入以下语句,然后按回车键查看运行效果:
1
|
print ( "Hello, Python!" );
|
以上命令执行结果如下:
Hello, Python!
当键入一个多行结构时,续行是必须的。我们可以看下如下 if 语句:
1
2
3
4
5
|
>>> flag = True
>>> if flag :
... print ( "flag 条件为 True!" )
...
flag 条件为 True !
|
脚本式编程
将如下代码拷贝至 hello.py文件中:
1
|
print ( "Hello, Python!" );
|
通过以下命令执行该脚本:
1
|
python3 hello.py
|
输出结果为:
Hello, Python!
在Linux/Unix系统中,你可以在脚本顶部添加以下命令让Python脚本可以像SHELL脚本一样可直接执行:
1
|
#! /usr/bin/env python3
|
然后修改脚本权限,使其有执行权限,命令如下:
1
|
$ chmod + x hello.py
|
执行以下命令:
1
|
. / hello.py
|
输出结果为:
Hello, Python!
到此这篇关于Python3 解释器的实现的文章就介绍到这了,更多相关Python3 解释器内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://www.runoob.com/python3/python3-interpreter.html