4 lines
90 B
Python
4 lines
90 B
Python
import re
|
|
url="https://baidu.comas.as"
|
|
if re.match(r"{2}\w.+$", url):
|
|
print("aaaaaaa") |