W3School TIY Editor

  • W3School 在线教程
  • 改变方向
  • 暗黑模式
​x
 
import re
​
str = "8 times before 11:45 AM"
​
#检查字符串中是否包含 + 字符:
​
x = re.findall("[+]", str)
​
print(x)
​
if (x):
  print("Yes, there is at least one match!")
else:
  print("No match")