Result Size: 625 x 571
demo_regex_meta5.py:
x
 
import re
txt = "hello world"
#Check if the string ends with 'world':
x = re.findall("world$", txt)
if (x):
  print("Yes, the string ends with 'world'")
else:
  print("No match")
C:\Users\My Name>python demo_regex_meta5.py

Yes, the string ends with 'world'