We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
03-regex-match.py please check this file as im getting error of match not found mybe match only checks at the starting of string
The text was updated successfully, but these errors were encountered:
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")
Sorry, something went wrong.
No branches or pull requests
03-regex-match.py please check this file as im getting error of match not found mybe match only checks at the starting of string
The text was updated successfully, but these errors were encountered: