小白教程
所有教程
关于
Search
172.71.222.123
172.71.222.123
参数设置
贡献
退出
操作
编辑
移动
保护
信息
历史
删除
查看“Python3 教程”的源代码
本页内容
下一节:
Python3_简介
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
{{DISPLAYTITLE:Python3 教程}}[[Category:Python 教程|1]] = Python 3 教程 = Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 '''官方宣布,2020 年 1 月 1 日, 停止 Python 2 的更新。''' == 查看 Python 版本 == 我们可以在命令窗口(Windows 使用 win+R 调出 cmd 运行框)使用以下命令查看我们使用的 Python 版本: <sample title="" desc="" lang="shell" hererun="1"> python3 -V #或 python3 --version </sample> 以上命令执行结果如下: <sample title="" > Python 3.3.2 </sample> 你也可以进入Python的交互式编程模式,查看版本: <sample title="" desc="" lang="python"> Python 3.3.2 (v3.3.2:d047928ae3f6, May 16 2013, 00:03:43) [MSC v.1600 32 bit (Intel)] on win32 Type "copyright", "credits" or "license()" for more information. >>> </sample> == 第一个Python3.x程序 == 对于大多数程序语言,第一个入门编程代码便是 '''"Hello World!"''',以下代码为使用 Python 输出 '''"Hello World!"''': == hello.py 文件代码: == <sample title="" desc="" lang="python" hererun="1"> #!/usr/bin/python3 print("Hello, World!") </sample> Python 常用文件扩展名为 .py。 你可以将以上代码保存在 '''hello.py''' 文件中并使用 python 命令执行该脚本文件。 <sample title="" > $ python3 hello.py </sample> 以上命令输出结果为: <sample title="" > Hello, World! </sample>
返回至“
Python3 教程
”。
下一节:
Python3_简介