Linux/Unix的系统上,Python解释器通常被安装在 /usr/local/bin/python3.4 这样的有效路径(目录)里。
我们可以将路径 /usr/local/bin 添加到您的Linux/Unix操作系统的环境变量中,这样您就可以通过 shell 终端输入下面的命令来启动 Python 。
- python3.4
在Window系统下你可以通过以下命令来设置Python的环境变量,假设你的Python安装在 C:\Python34 下:
- set path=%path%;C:\python34
我们可以在命令提示符中输入"Python"命令来启动Python解释器:
- python
执行以上命令后,出现如下窗口信息:
- $ python3.4
- Python 3.4 (default, Mar 16 2014, 09:25:04)
- [GCC 4.8.2] on linux
- Type "help", "copyright", "credits" or "license" for more information.
- >>>
在 python 提示符中输入以下语句,然后按回车键查看运行效果:
- print ("Hello, Python!");
以上命令执行结果如下:
- Hello, Python!
当键入一个多行结构时,续行是必须的。我们可以看下如下 if 语句:
- >>> the_world_is_flat = True
- >>> if the_world_is_flat:
- ... print("Be careful not to fall off!")
- ...
- Be careful not to fall off!
将如下代码拷贝至hello.py文件中:
- print ("Hello, Python!");
通过以下命令执行该脚本:
- python hello.py
输出结果为:
- Hello, Python!
在Linux/Unix系统中,你可以在脚本顶部添加以下命令让Python脚本可以像SHELL脚本一样可直接执行:
- #! /usr/bin/env python3.4
然后修改脚本权限,使其有执行权限,命令如下:
- $ chmod +x hello.py
执行以下命令:
- ./hello.py
输出结果为:
- Hello, Python!
有关Python基础语法部分请参阅:Python基础语法