import re x = re.compile(r"hello")
在上面的代码中,
x
re.Pattern[str]
re.Pattern
re.Pattern[int]
它是通用的,因为它代表任何匹配的返回类型。由于您要匹配字符串文字“hello”,因此任何匹配都将是
string
int