# Python解释器
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基础语法](/python/python-basic-syntax.html)
- Python 基础教程
- Python 简介
- Python 环境搭建
- Python 基础语法
- Python 变量类型
- Python 运算符
- Python 条件语句
- Python 循环语句
- Python While循环语句
- Python for 循环语句
- Python 循环嵌套
- Python break 语句
- Python continue 语句
- Python pass 语句
- Python 数字
- Python 字符串
- Python 列表(Lists)
- Python 元组
- Python 字典(Dictionary)
- Python 日期和时间
- Python 函数
- Python 模块
- Python 文件I/O
- Python 异常处理
- Python 高级教程
- Python 面向对象
- Python 正则表达式
- Python CGI编程
- Python 使用SMTP发送邮件
- Python 多线程
- Python 2.x与3??.x版本区别
- Python IDE
- Python JSON
- Python3 教程
- Python3 基础语法
- Python3 基本数据类型
- Python3 解释器
- Python3 注释
- Python3 数字运算
- Python3 字符串
- Python3 列表
- Python3 编程第一步
- Python3 条件控制
- Python3 循环
- Python3 函数
- Python3 数据结构
- Python3 模块
- Python3 输入和输出
- Python3 错误和异常
- Python3 类
- Python3 标准库概览
- 免责声明