windows下如何运行python程序

python

Windows下运行Python测程序,有以下几种方法

1.脚本式编程

 将如下代码拷贝至 hello.py文件中:

print ("Hello, Python!");

通过以下命令执行该脚本:

python ./hello.py

hello,python

在Linux/Unix系统中,你可以在脚本顶部添加以下命令让Python脚本可以像SHELL脚本一样可直接执行:

#! /usr/bin/env python3

然后修改脚本权限,使其有执行权限,命令如下:

$ chmod +x hello.py

网,免费的网站,欢迎在线学习!

执行以下命令:

./hello.py

输出结果为:

Hello, Python!

2.利用Python自带的IDEL

python 自带了一款 IDE,叫做 IDLE。

 3.利用python自带的python.exe

以上是 windows下如何运行python程序 的全部内容, 来源链接: utcz.com/z/525012.html

回到顶部