Gxlsystem TIY Editor
Gxlsystem 在线教程
改变方向
暗黑模式
python_regex_meta_4.py:
import re str = "hello world" #Check if the string starts with 'hello': x = re.findall("^hello", str) if (x): print("Yes, the string starts with 'hello'") else: print("No match")