我如何加载我已经下载的程序!

我如何加载我已经下载的程序!

我正在尝试开始编程,并且确定我已经下载了 python。

我如何找到并运行该程序?

答案1

Python 更像是一种编程语言,而不是程序本身,但它也有一个交互式 shell。以下是您的主要选项。

1. 交互式 Shell

若要使用 Python,只需运行即可python。不会保存任何内容打开终端并运行python

$ python
Python 2.7.4 (default, Jul  5 2013, 08:21:57) 
[GCC 4.7.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> add = lambda a, b: '%d + %d = %d' % (a, b, a+b)
>>> add(3, 72)
'3 + 72 = 75'

2. 作为翻译

如果你想从文件中工作,那当然可以。你可以随意命名它,然后运行:

python mypythonfile.py

ControlD退出。

3. 作为通用脚本

如果你希望文件像命令一样运行,而不想python每次都在其前面添加内容,则可以在脚本开头添加一个 shebang:

#!/usr/bin/env python

...保存,然后在终端中设置权限

chmod +x mypythonfile.py

...然后运行它

./mypythonfile.py

相关内容