pramod-199

Results 1 comments of pramod-199

it should be like import re text = "quick brown fox" pattern = r"quick" match = re.match(pattern, text) if match: print("Match found:", match.group()) else: print("No match")