Result Size: 625 x 571
demo_regex_search2.py:
x
 
import re
txt = "The rain in Spain"
x = re.search("Portugal", txt)
print(x)
C:\Users\My Name>python demo_regex_search2.py
None