Python3.8 特性介紹

簡介

Python3.8 已經發布了, 官方文檔看這裏 What’s New In Python 3.8.html

介紹一些 Python3.8 中的新特性.python

海象表達式 :=

新的語法 := 將給變量賦值, 這個變量是更大的表達式的一部分.正則表達式

if (n := len(a)) > 10:
  print(f"List is too long ({n} elements, expected <= 10)")
複製代碼

用在 if 判斷中, 避免調用 len() 兩次.異步

discount = 0.0
if (mo := re.search(r'(\d+)% discount', advertisement)):
  discount = float(mo.group(1)) / 100.0
複製代碼

正則表達式匹配和獲取結果的時候.async

# Loop over fixed length blocks
while (block := f.read(256)) != '':
  process(block)
複製代碼

用在 while 循環中, 能夠同時取值, 並判斷是否爲空.函數

[clean_name.title() for name in names
 if (clean_name := normalize('NFC', name)) in allowed_names]
複製代碼

用在列表推導中.oop

完整介紹看 PEP 572.spa

僅位置參數 /

新的函數參數語法 / 指明有些函數參數必須被指定爲位置參數, 不能被用做關鍵字參數.code

def f(a, b, /, c, d, *, e, f):
  print(a, b, c, d, e, f)
複製代碼

在上面的例子中, a 和 b 是僅位置參數, c 和 d 既能夠是位置參數又能夠是關鍵字參數, e 和 f 必須是關鍵字參數.orm

>>> def f(a, b, /, **kwargs):
...     print(a, b, kwargs)
...
>>> f(10, 20, a=1, b=2, c=3)         # a and b are used in two ways
10 20 {'a': 1, 'b': 2, 'c': 3}
複製代碼

僅位置參數的參數名在 **kwargs 中仍舊可用.

class Counter(dict):
  def __init__(self, iterable=None, /, **kwds):
    # Note "iterable" is a possible keyword argument
複製代碼

完整介紹看 PEP 570.

f-strings 說明符 =

f-strings 增長了 = 說明符, f'{expr=}' 會被擴展爲表達式的文本, 加上一個等號, 和一個執行表達式的結果.

>>> user = 'eric_idle'
>>> member_since = date(1975, 7, 31)
>>> f'{user=} {member_since=}'
"user='eric_idle' member_since=datetime.date(1975, 7, 31)"
複製代碼

啓動異步 REPL

使用 python -m asyncio 啓動一個異步的 REPL, 能夠直接在 top-level 級別使用 await, 不用在封裝到函數中了.

unittest 支持異步

import unittest

class TestRequest(unittest.IsolatedAsyncioTestCase):

    async def asyncSetUp(self):
        self.connection = await AsyncConnection()

    async def test_get(self):
        response = await self.connection.get("https://example.com")
        self.assertEqual(response.status_code, 200)

    async def asyncTearDown(self):
        await self.connection.close()


if __name__ == "__main__":
    unittest.main()
複製代碼
相關文章
相關標籤/搜索