diff options
Diffstat (limited to 'progs/a897.py')
-rw-r--r-- | progs/a897.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/progs/a897.py b/progs/a897.py new file mode 100644 index 0000000..22107cf --- /dev/null +++ b/progs/a897.py @@ -0,0 +1,6 @@ +import re
+def search_literal(pattern,text):
+ match = re.search(pattern, text)
+ s = match.start()
+ e = match.end()
+ return (s, e)
\ No newline at end of file |