[other] python笔记:Python源文件的编写与运行
Tofloor
poster avatar
wlly-lzh
deepin
2024-06-12 20:49
Author

Python源文件的编写与运行


以编写一个简单的"Hello Python"程序为例,简单介绍一下Python源文件的编写与运行。

  1. python程序的源文件以py为后缀,例如 hello.py

    先创建一个名为 hello.py的文件。

  2. 编写代码

    内容如下:

    #!/bin/python3
    print("Hello Python")
    # 输出 Hello Python
    
  3. 运行代码

    因为Python是一种解释型语言,所以运行Python程序不需要编译,而是使用解释器来运行。

    请按如下流程操作:

    • 切换到 hello.py文件所在的目录

      cd XXX
      
    • 使用Python解释器运行程序

      python3 hello.py
      

      如果一切顺利,你会看见如下的输出:

      Hello Python
      

知识点:

  1. Python源文件以py作为后缀
  2. Python代码用 # 表示注释,在一行代码中, # 后面的内容不会被执行

额外知识点:

  1. 在Linux中,将本文中的 hello.py文件的权限设置为可执行后,可以直接运行程序。

    例如:

    ./hello.py
    

    因为源代码的第一行的 #!/bin/python指定了脚本的解释器为 python


作者:wlly-lzh

本内容依据"CC BY-SA-4.0"许可证进行授权,要查看该许可证,可访问https://creativecommons.org/licenses/by-sa/4.0/

Reply Favorite View the author
All Replies
兆兆嘟嘟嘟
deepin
2024-06-12 21:50
#1

可执行文件改成python3。

Reply View the author
wlly-lzh
deepin
2024-06-12 22:09
#2
兆兆嘟嘟嘟

可执行文件改成python3。

confused

Reply View the author
兆兆嘟嘟嘟
deepin
2024-06-14 00:58
#3
wlly-lzh

confused

因为/usr/bin下的 python是python2,python3才是python3。

Reply View the author
wlly-lzh
deepin
2024-06-14 22:01
#4
兆兆嘟嘟嘟

因为/usr/bin下的 python是python2,python3才是python3。

你说的并不完全对,可能部分发行版还停留在python2,但是有的发行版已经更新到python3了。


根据你的意见,已经改为Python3。

Reply View the author