新手学python-启动和退出Python交互式环境

新手学python-启动和退出Python交互式环境

写给某人:有一位同学天天在我耳边念叨Python语言如何如何好(请恕我词穷不知如何复述那个如何如何到底是有多如何如何),所以下定决心要从头开始学习Python了。写代码一直是我的软肋,希望这次能坚持学习,边学边记。

初学代码首先要安装程序,之前写过一篇如何在CentOS下升级Python的文章,我的环境从2.4升级到2.7了,升级完成后,就可以开始使用python环境了。其他操作系统下的安装暂时没有研究,网上搜索有很多教程。

我自己这次学习,首先是启动和退出的交互式环境。以ContOS为例,在命令行中输入python,然后按下回车。结果如下:

[root@lc ~]# python
Python 2.7.2 (default, Mar 18 2014, 13:15:24)
[GCC 4.1.2 20080704 (Red Hat 4.1.2-52)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>  

看到提示符>>>就表示我已经在Python交互式环境中了。

接着想退出该交互式环境,习惯性敲了 exit ,然后按下回车:

[root@lc ~]# python
Python 2.7.2 (default, Mar 18 2014, 13:15:24) 
[GCC 4.1.2 20080704 (Red Hat 4.1.2-52)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> exit
Use exit() or Ctrl-D (i.e. EOF) to exit
>>> 

还在交互式环境中,且有提示,用 exit() 或者 Ctrl-D (i.e. EOF) 来退出。

接着敲 exit() 然后按下回车,退出成功。

[root@lc ~]# python
Python 2.7.2 (default, Mar 18 2014, 13:15:24)
[GCC 4.1.2 20080704 (Red Hat 4.1.2-52)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> exit
Use exit() or Ctrl-D (i.e. EOF) to exit
>>>
>>> exit()
[root@lc ~]#

 

然后试了另外一种方式退出,先启动,然后按Ctrl-D,退出成功。

[root@lc ~]# python
Python 2.7.2 (default, Mar 18 2014, 13:15:24)
[GCC 4.1.2 20080704 (Red Hat 4.1.2-52)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>
[root@ ~]#

至此,启动和退出的交互式环境算是学完了。

 

下一次将学习Python的输出-Print

Wednesday, October 21, 2015 | Python

文章评论

No comments posted yet.

发表评论

Please add 5 and 2 and type the answer here: