這篇文章給大家分享的是有關(guān)Python3.1中的特性是什么的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。
豐寧網(wǎng)站制作公司哪家好,找成都創(chuàng)新互聯(lián)!從網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、成都響應(yīng)式網(wǎng)站建設(shè)公司等網(wǎng)站項(xiàng)目制作,到程序開發(fā),運(yùn)營(yíng)維護(hù)。成都創(chuàng)新互聯(lián)從2013年成立到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來(lái)保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選成都創(chuàng)新互聯(lián)。
1、千位數(shù)格式化
在格式化大數(shù)時(shí),通常是每三位數(shù)放置逗號(hào),使數(shù)字更易讀(例如,1,048,576 比 1048576 更容易讀)。從 Python 3.1 開始,可以在使用字符串格式化函數(shù)時(shí)直接完成:
"2 to the 20th power is {:,d}".format(2**20) '2 to the 20th power is 1,048,576'
2、collections.Counter 類是標(biāo)準(zhǔn)庫(kù)模塊 collections 的一部分,是 Python 中的一個(gè)秘密超級(jí)武器。它經(jīng)常在 Python 的面試題的簡(jiǎn)單解答中首次遇到,但它的價(jià)值并不限于此。
hd_song = """ In winter, when the fields are white, I sing this song for your delight. In Spring, when woods are getting green, I'll try and tell you what I mean. In Summer, when the days are long, Perhaps you'll understand the song. In Autumn, when the leaves are brown, Take pen and ink, and write it down. """
3、執(zhí)行軟件包
從 Python 3.1 開始,python -m package 將執(zhí)行軟件包中的 __main__ 模塊。這是一個(gè)放調(diào)試腳本或命令的好地方,這些腳本主要是用工具執(zhí)行的,不需要很短。
感謝各位的閱讀!關(guān)于“Python3.1中的特性是什么”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!