當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python typing.AnyStr用法及代碼示例


用法:

typing.AnyStr

AnyStr 是定義為 AnyStr = TypeVar('AnyStr', str, bytes) 的類型變量。

它旨在用於可以接受任何類型的字符串但不允許不同類型的字符串混合的函數。例如:

def concat(a: AnyStr, b: AnyStr) -> AnyStr:
    return a + b

concat(u"foo", u"bar")  # Ok, output has type 'unicode'
concat(b"foo", b"bar")  # Ok, output has type 'bytes'
concat(u"foo", b"bar")  # Error, cannot mix unicode and bytes

相關用法


注:本文由純淨天空篩選整理自python.org大神的英文原創作品 typing.AnyStr。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。