From 62a84dafa74e266c44d5889e586cfdfa04910729 Mon Sep 17 00:00:00 2001 From: Abigail Date: Wed, 27 Jan 2021 22:03:31 +0100 Subject: Python solution for week 3, part 1 --- challenge-003/abigail/python/ch-1.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 challenge-003/abigail/python/ch-1.py (limited to 'challenge-003/abigail/python/ch-1.py') 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 -- cgit