W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
import re # 返回包含所有 "a" 出现位置的列表: str = "China is a great country" x = re.findall("a", str) print(x)