diff options
| author | Abigail <abigail@abigail.be> | 2021-10-19 16:40:57 +0200 |
|---|---|---|
| committer | Abigail <abigail@abigail.be> | 2021-10-19 16:40:57 +0200 |
| commit | 71d3279fed60471b894f85006f0573eba5e0e66f (patch) | |
| tree | feab918c8159a0952d9f22d24990de01bce4d854 /challenge-135/abigail/python/ch-1.py | |
| parent | 6fbe2f4e31051b2ecc881d9f476c61fe08b5b43b (diff) | |
| download | perlweeklychallenge-club-71d3279fed60471b894f85006f0573eba5e0e66f.tar.gz perlweeklychallenge-club-71d3279fed60471b894f85006f0573eba5e0e66f.tar.bz2 perlweeklychallenge-club-71d3279fed60471b894f85006f0573eba5e0e66f.zip | |
Python solutions for week 135
Diffstat (limited to 'challenge-135/abigail/python/ch-1.py')
| -rw-r--r-- | challenge-135/abigail/python/ch-1.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/challenge-135/abigail/python/ch-1.py b/challenge-135/abigail/python/ch-1.py new file mode 100644 index 0000000000..451fa94c9f --- /dev/null +++ b/challenge-135/abigail/python/ch-1.py @@ -0,0 +1,24 @@ +#!/opt/local/bin/python + +# +# See ../README.md +# + +# +# Run as: python ch-1.py < input-file +# + +import fileinput +import re + +for line in fileinput . input (): + line = re . sub (r'^[-+]', '', line . strip ()) + ll = len (line) + if re . search (r'[^0-9]', line): + print ("not an integer") + elif ll % 2 == 0: + print ("even number of digits") + elif ll < 3: + print ("too short") + else: + print (line [(ll - 3) // 2 : (ll + 3) // 2]) |
