趕緊試試 Python 3.12 吧,真的好用
Python 3.12 引入了一些新的特性和改進(jìn),提升了開(kāi)發(fā)體驗和代碼性能。以下是其中一些值得注意的新函數和改進(jìn):
1. str.removeprefix() and str.removesuffix()
雖然這些函數在 Python 3.9 就已引入,但它們在 Python 3.12 中變得更加廣泛使用。
**str.removeprefix(prefix)**:如果字符串以指定的前綴開(kāi)頭,則返回去掉該前綴的字符串。
**str.removesuffix(suffix)**:如果字符串以指定的后綴結尾,則返回去掉該后綴的字符串。
s = "HelloWorld"
print(s.removeprefix("Hello")) # 輸出: World
print(s.removesuffix("World")) # 輸出: Hello
2. math.nextafter(x, y)
返回從 x 開(kāi)始,到 y 方向的下一個(gè)浮點(diǎn)數。這個(gè)函數對需要精確控制浮點(diǎn)數計算的場(chǎng)景非常有用。
import math
print(math.nextafter(1.0, 2.0)) # 輸出: 1.0000000000000002
print(math.nextafter(1.0, 0.0)) # 輸出: 0.9999999999999999
3. sys.orig_argv
這個(gè)屬性允許你訪(fǎng)問(wèn)原始的命令行參數列表,包括解釋器自身的參數,而不僅僅是腳本和傳遞給腳本的參數。
import sys
print(sys.orig_argv)
4. functools.cache_clear()
在 Python 3.12 中,functools.cache_clear() 方法被添加到 functools.lru_cache 修飾器中,用于清除緩存。
from functools import lru_cache
@lru_cache(maxsize=32)
def fibonacci(n):
if n < 2:
return n
return fibonacci(n-1) + fibonacci(n-2)
# 清除緩存
fibonacci.cache_clear()
5. 新的 typing 模塊改進(jìn)
Python 3.12 對 typing 模塊進(jìn)行了多項改進(jìn),包括更好的類(lèi)型推斷和新的類(lèi)型提示功能。例如,可以使用 Self 類(lèi)型提示方法的返回類(lèi)型為類(lèi)實(shí)例本身。
from typing import Self
class MyClass:
def my_method(self) -> Self:
return self
6. contextlib.aclosing
類(lèi)似于 contextlib.closing 但用于異步生成器對象。
import contextlib
class AsyncGenerator:
async def __aenter__(self):
print("Entering")
return self
async def __aexit__(self, exc_type, exc, tb):
print("Exiting")
async def __aiter__(self):
for i in range(5):
yield i
async def main():
async with contextlib.aclosing(AsyncGenerator()) as agen:
async for item in agen:
print(item)
# 運行異步主函數
import asyncio
asyncio.run(main())
7. itertools.pairwise()
產(chǎn)生一對連續元素的迭代器。
import itertools
for pair in itertools.pairwise([1, 2, 3, 4]):
print(pair)
# 輸出: (1, 2), (2, 3), (3, 4)
8. zoneinfo 模塊改進(jìn)
對時(shí)區信息進(jìn)行了增強,更好地支持時(shí)間相關(guān)操作。
from zoneinfo import ZoneInfo
from datetime import datetime
dt = datetime(2024, 6, 14, tzinfo=ZoneInfo("America/New_York"))
print(dt)
這些新特性和改進(jìn)使得 Python 3.12 更加強大和易用,為開(kāi)發(fā)者提供了更多工具來(lái)編寫(xiě)高效、可維護的代碼。建議大家盡早升級并嘗試這些新特性。
相關(guān)閱讀:
- Python簡(jiǎn)單實(shí)現區域生長(cháng)方式 (liqianqian1116, 2024-9-26)
- 基于Python的飛機大戰游戲設計 (liqianqian1116, 2024-8-09)
- 掌握自動(dòng)化:Python PyAutoGUI詳解 (liqianqian1116, 2024-6-18)
- 盤(pán)點(diǎn)歷屆 Java 語(yǔ)言的關(guān)鍵字,一定有你不認識的 (liqianqian1116, 2024-6-18)
- Python 編程小品:20 個(gè)讓人眼前一亮的邏輯妙用 (liqianqian1116, 2024-6-17)
TAG: 軟件開(kāi)發(fā) Python
標題搜索
日歷
|
|||||||||
日 | 一 | 二 | 三 | 四 | 五 | 六 | |||
1 | 2 | 3 | 4 | 5 | |||||
6 | 7 | 8 | 9 | 10 | 11 | 12 | |||
13 | 14 | 15 | 16 | 17 | 18 | 19 | |||
20 | 21 | 22 | 23 | 24 | 25 | 26 | |||
27 | 28 | 29 | 30 | 31 |
我的存檔
數據統計
- 訪(fǎng)問(wèn)量: 359463
- 日志數: 1182
- 建立時(shí)間: 2020-08-11
- 更新時(shí)間: 2024-10-08