python3.1中的特性有哪些
1、千位數格式化,可以在使用字符串格式化函數時直接完成。
在格式化大數時,通常是每三位數放置逗號,使數字更易讀(例如,1,048,576比1048576更容易讀)。
"2tothe20thpoweris{:,d}".format(2**20)
'2tothe20thpoweris1,048,576'
2、collections.Counter類是collections的一部分。
是Python中的一個秘密超級武器。它經常在Python的面試題的簡單解答中首次遇到,但它的價值并不限于此。
hd_song="""
Inwinter,whenthefieldsarewhite,
Isingthissongforyourdelight.
InSpring,whenwoodsaregettinggreen,
I'lltryandtellyouwhatImean.
InSummer,whenthedaysarelong,
Perhapsyou'llunderstandthesong.
InAutumn,whentheleavesarebrown,
Takepenandink,andwriteitdown.
"""
3、執行軟件包中的__main__模塊。
從Python3.1開始,python-mpackage將執行軟件包中的__main__模塊。這是一個放調試腳本或命令的好地方,這些腳本主要是用工具執行的,不需要很短。
以上就是Python3.1中的特性,希望對大家有所幫助。更多Python學習教程請關注IT培訓機構:千鋒教育。