当前位置:脚本大全 > > 正文

python程序运行步骤(详解python运行三种方式)

时间:2021-10-02 01:27:44类别:脚本大全

python程序运行步骤

详解python运行三种方式

方式一

交互式编程

交互式编程不需要创建脚本文件,是通过 python 解释器的交互模式进来编写代码。

linux上你只需要在命令行中输入 python 命令即可启动交互式编程,提示窗口如下:

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • $ python
  • python 2.7.6 (default, sep 9 2014, 15:04:36)
  • [gcc 4.2.1 compatible apple llvm 6.0 (clang-600.0.39)] on darwin
  • type "help", "copyright", "credits" or "license" for more information.
  • >>>
  • window上在安装python时已经已经安装了默认的交互式编程客户端,提示窗口如下:

    在 python 提示符中输入以下文本信息,然后按 enter 键查看运行效果:

  • ?
  • 1
  • >>> print "hello, python!";
  • 在 python 2.7.6 版本中,以上事例输出结果如下:

    hello, python!

     如果您运行的是新版本的python,那么你就需要在print语句中使用括号如:

  • ?
  • 1
  • >>> print ("hello, python!");
  • 方式二

    脚本式编程

    通过脚本参数调用解释器开始执行脚本,直到脚本执行完毕。当脚本执行完成后,解释器不再有效。

    让我们写一个简单的python脚本程序。所有python文件将以.py为扩展名。将以下的源代码拷贝至test.py文件中。

  • ?
  • 1
  • print "hello, python!";
  • 这里,假设你已经设置了python解释器path变量。使用以下命令运行程序:

  • ?
  • 1
  • $ python test.py
  • 输出结果:

    hello, python!

     方式三

    让我们尝试另一种方式来执行python脚本。修改test.py文件,如下所示:

  • ?
  • 1
  • 2
  • 3
  • #!/usr/bin/python
  •  
  • print "hello, python!";
  • 这里,假定您的python解释器在/usr/bin目录中,使用以下命令执行脚本:

  • ?
  • 1
  • 2
  • $ chmod +x test.py   # 脚本文件添加可执行权限
  • $./test.py
  • 输出结果:

    hello, python!

    以上所述是小编给大家介绍的python运行三种方式详解整合,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对开心学习网网站的支持!

    原文链接:https://blog.csdn.net/t2kem/article/details/50697918

    上一篇下一篇

    猜您喜欢

    热门推荐