2.1 The Python Interpreter(python解释器)

2.1 The Python Interpreter(Python解释器)

Python是一门解释性语言。Python的解释器一次只能运行一个命令。标准的Python解释器环境可以用通过输入python进入(在终端输入python后,就能进入解释器):

>>>是提示符(prompt),告诉你可以输入指令。如果想要退出,可以输入exit()或者按Ctrl-D。

运行python程序也很简单,输入一个终端python+.py文件即可。假设我们的hello_world.py文件中有下面的内容

print(‘Hello world‘)

可以通过下面的命令来运行(记住,hello_world.py必须在当前文件夹下):

如果是做科学计算和数据分析的话,我们通常使用IPython,这是一个强化版的python解释器,而Jupyter notebook是一个基于网页的代码记事本,也是从IPython项目中开发出来的。这里会简单介绍一下IPython和Jupyter和使用方法,更多的内容可以看附录B。当我们使用%run命令的时候,IPython会按执行代码的方式来执行文件,可以让我们直观地看到交互的结果:

默认的IPython提示符会显示数字,比如图片中的In [2]:,而不是普通的>>>提示符。

原文地址:https://www.cnblogs.com/hankleo/p/9942489.html

时间: 2024-11-03 21:57:52

2.1 The Python Interpreter(python解释器)的相关文章

[Python] Interpreter setting in Pycharm

From: http://blog.csdn.net/u013088062/article/details/50135135 最全Pycharm教程(4)——有关Python解释器的相关配置 Local interpreter Remote interpreter SSH VirtualBox Local interpreter: 2.本地解释器配置 配置本地解释器的步骤相对简洁直观: (1)单击工具栏中的设置按钮. (2)在 Settings/Preferences 对话框中选中 Projec

[译]Python编写虚拟解释器

使用Python编写虚拟机解释器 一.实验说明 1. 环境登录 无需密码自动登录,系统用户名shiyanlou,密码shiyanlou 2. 环境介绍 本实验环境采用带桌面的Ubuntu Linux环境,实验中会用到程序: 1. LX终端(LXTerminal):Linux命令行终端,打开后会进入Bash环境,可以使用Linux命令2. GVim:非常好用的编辑器,最简单的用法可以参考课程Vim编辑器 3. 环境使用 使用R语言交互式环境输入实验所需的代码及文件,使用LX终端(LXTermina

【python系列】安装完PyCharm创建项目提示No Python interpreter selected

安装Python解释器 去python官网下载python的安装包(https://www.python.org/downloads/release/python-361/) 注意安装的时候选择配置python路径到path,也可以安装完之后自己进行配置. 配置python interpreter

pycharm显示no python interpreter configured for the project

打开pycharm,新建python项目时,提示no python interpreter configured for the project,理解为没有找到解释器 可手动设置添加解释器 1. 点击Configure Python interpreter,进入project interpreter设置页面 2. 点击add 3.选择已存在的环境,python安装路径下的pythonw.exe,点击OK按钮 4.勾选make available to all project,对所有工程都起作用,

转载的,刚装完 PyCharm , 却遇到“No Python interpreter selected”该怎么办

Your problem probably is that you haven't installed python. Meaning that, if you are using Windows, you have not downloaded the installer for Windows, that you can find on the official Python website. In case you have, chances are that PyCharm cannot

python是一个解释器

python是一个解释器 利用pip安装python插件的时候,观察到python的运作方式是逐步解释执行的 适合作为高级调度语言: 异常的处理以及效率应该是主要的问题

在python的交互式解释器中实现命令自动补全

Python的交互式解释器没有自带像Linux Shell那样的命令自动补全功能,可以编写一个模块来实现这一功能,模块源代码来自老男孩Linux培训机构的Python讲师Alex: # python startup file import sys import readline # tab completion readline.parse_and_bind('tab: complete')

Python 手册——调用解释器

通常Python的解释器被安装在目标机器的 /usr/local/bin/python 目录下:把 /usr/local/bin 目录放进你的UNIX Shell 的搜索路径里,确保它可以通过输入python来启动.因为安装路径是可选的,所以也有可能安装在其它位置,你可以与安装Python的用户或系统管理员联系.(例如,/usr/local/python就是一个很常见的选择)输入一个文件结束符(UNIX上是Ctrl+D,Windwos上是Ctrl+Z)解释器会以0值退出(就是说,没有什么错误,正

Python Tutorial 学习(二)--Using the Python Interpreter

Using the Python Interpreter 2.1. Invoking the Interpreter The Python interpreter is usually installed as /usr/local/bin/python on those machines where it is available; putting /usr/local/bin in your Unix shell’s search path makes it possible to star