Answers for "what does function re.match do"

1

re.match python

import re
xx = "guru99,education11 is fun"
r1 = re.findall(r"^w+",xx)
print(r1)
Posted by: Guest on February-22-2021

Code answers related to "what does function re.match do"

Python Answers by Framework

Browse Popular Code Answers by Language