diff options
| author | Abigail <abigail@abigail.be> | 2021-01-27 22:03:31 +0100 |
|---|---|---|
| committer | Abigail <abigail@abigail.be> | 2021-01-27 22:03:31 +0100 |
| commit | 62a84dafa74e266c44d5889e586cfdfa04910729 (patch) | |
| tree | 18e745b77333900ebe7321d6a83d265875ab27d1 /challenge-003/abigail | |
| parent | 606b6e2ed9a0608414f8b9bf6333942cb0cdf4f1 (diff) | |
| download | perlweeklychallenge-club-62a84dafa74e266c44d5889e586cfdfa04910729.tar.gz perlweeklychallenge-club-62a84dafa74e266c44d5889e586cfdfa04910729.tar.bz2 perlweeklychallenge-club-62a84dafa74e266c44d5889e586cfdfa04910729.zip | |
Python solution for week 3, part 1
Diffstat (limited to 'challenge-003/abigail')
| -rw-r--r-- | challenge-003/abigail/README.md | 1 | ||||
| -rw-r--r-- | challenge-003/abigail/python/ch-1.py | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/challenge-003/abigail/README.md b/challenge-003/abigail/README.md index ff5eb863f5..979a7834e0 100644 --- a/challenge-003/abigail/README.md +++ b/challenge-003/abigail/README.md @@ -14,6 +14,7 @@ numbers. For more information, please check this * [Lua](lua/ch-1.lua) * [Node.js](node/ch-1.js) * [Perl](perl/ch-1.pl) +* [Python](python/ch-1.py) ## [Challenge #2](https://perlweeklychallenge.org/blog/perl-weekly-challenge-003/#challenge-2) diff --git a/challenge-003/abigail/python/ch-1.py b/challenge-003/abigail/python/ch-1.py new file mode 100644 index 0000000000..30b41dd8fe --- /dev/null +++ b/challenge-003/abigail/python/ch-1.py @@ -0,0 +1,27 @@ +#!/opt/local/bin/python + +# +# See ../READ.md +# + +# +# Run as python ch-1.py < input-file +# + +import fileinput + +for line in fileinput . input (): + max = int (line) + # + # Python does not have a for (;;) style loop + # + base2 = 1 + while base2 <= max: + base3 = base2 + while base3 <= max: + base5 = base3 + while base5 <= max: + print base5 + base5 *= 5 + base3 *= 3 + base2 *= 2 |
