select python interpreter什么意思_熟悉Python Interpreter解释器

1. 启动python解释器

2. python解释器的两种模式

3. 错误处理

4. 设置python解释器启动代码

5. 执行python module

5.1 python文件注释

5.2 如何编写中文注释

5.3 如何执行.py文件

<1>. 启动python解释器;

上一篇中,我们安装了python,并且在eclipse下安装了pydev插件,并且熟悉了这个ide的开发环境,这里我们将看看如何在命令行下玩一下python(windows环境下)。第一步我们来启动该解释器,在windows下如果设置了环境变量的话,直接在cmd下键入python即可,或者是cd到python的安装目录下,执行./python.exe。

<2>. python解释器的两种模式;

按照上一步启动python的解释器之后,默认的将进入Interactive Mode交互模式,解释器将在等待用户输入。python解释器允许将一个“命令”在多行书写,此时python解释器将使用...提示用户,如下:

D:\pythonwork>python

Python 2.7.1 (r271:86832, Nov 27 2010, 18:30:46) [MSC v.1500 32 bit (Intel)] on

win32

Type "help", "copyright", "credits" or "license" for more information.

>>> the_word_is_flat = 1;

>>> if the_word_is_flat :

... print("be caref

你可能感兴趣的:(select,python,interpreter什么意思)