当前位置: 首页 > 图灵资讯 > 行业资讯> Python3.1中的特性有哪些

Python3.1中的特性有哪些

来源:图灵python
时间: 2024-07-16 09:57:08

1、千位数格式化,使用字符串格式化函数时可直接完成。

当大数格式化时,逗号通常每三位数放置一次,使数字更容易阅读(例如,1,048,5766) 比 1048576 更容易读)。

"2tothe20thpoweris{:,d}".format(2**20)
'2tothe20thpoweris1,048,576'

2、collections.collections是colections的一部分。

是 Python 秘密超级武器之一。它经常在那里 Python 第一次遇到面试问题的简单解答,但是它的价值并不局限于此。

hd_song="""
Inwinter,whenthefieldsarewhite,
Isingthissongforyourdelight.

InSpring,whenwoodsaregettinggreen,
I'lltryandtellyouwhatImean.

InSummer,whenthedaysarelong,
Perhapsyou'llunderstandthesong.

InAutumn,whentheleavesarebrown,
Takepenandink,andwriteitdown.
"""

3、执行软件包中的 __main__ 模块。

从 Python 3.1 开始,python -m package 在执行软件包中 __main__ 模块。这是一个放置调试脚本或命令的好地方。这些脚本主要由工具执行,不需要很短。

以上是Python3.1的特点,希望对大家有所帮助。更多Python学习指导:python基础教程

本教程的操作环境:windows7系统,Python 3.1,DELL G3电脑。