Python3.11正式版,它来了!

【Python3.11正式版,它来了!】转载请注明出处?
作者:测试蔡坨坨
原文链接:caituotuo.top/b055fbf2.html
你好,我是测试蔡坨坨 。
就在前几天 , 2022年10月24日 , Python3.11正式版发布了!

Python3.11正式版,它来了!

文章插图
Python官方在2020年1月1日结束了对Python2的维护 , 这也意味着Python2已经成为历史,真正进入了Python3时代 。自从进入Python3版本以来 , 官方已经发布了众多修改版本分支,现在最新的正式版本就是前不久刚发布的Python3.11,这一版本历经17个月的开发 , 现在公开可用,据说对用户更友好 。
今天 , 我们就来一起看看Python3.11都更新了些什么呢 。
官方文档:python.org/3.11/whatsnew/3.11.html" rel="external nofollow noreferrer">https://docs.python.org/3.11/whatsnew/3.11.html
# author: 测试蔡坨坨# datetime: 2022/10/29 15:14# function: Python3.11 输出版本信息import sysprint("Python Version: ", sys.version)# Python Version:3.11.0 (main, Oct 24 2022, 18:26:48) [MSC v.1933 64 bit (AMD64)]print("Python Version Info: ", sys.version_info)# Python Version Info:sys.version_info(major=3, minor=11, micro=0, releaselevel='final', serial=0)速度更快首先第一点 , 也是最重要的,就是它更快了,官方说法是Python 3.11比Python 3.10快10-60% 。

    推荐阅读