commit message from python script

This commit is contained in:
2023-11-13 15:19:46 +01:00
parent 29d421924c
commit 8b62cc0af0
3 changed files with 62 additions and 1 deletions

6
regex_test/main.py Normal file
View File

@@ -0,0 +1,6 @@
import re
txt = "The rain in Spain"
x = re.search("^The.*Spain$", txt)
if x :
print("Yes")