Answers for "treehouse python escapes.py import re def first_number(x): x = '1234' num = re.match(r'\d', x) return num"

3

re.match() python

import re

pattern = '^a...s$'
test_string = 'abyss'
result = re.match(pattern, test_string)

if result:
  print("Search successful.")
else:
  print("Search unsuccessful.")
Posted by: Guest on July-17-2020

Python Answers by Framework

Browse Popular Code Answers by Language