aboutsummaryrefslogtreecommitdiff
path: root/challenge-002/abigail/python/ch-1.py
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-002/abigail/python/ch-1.py')
-rw-r--r--challenge-002/abigail/python/ch-1.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/challenge-002/abigail/python/ch-1.py b/challenge-002/abigail/python/ch-1.py
index de6839af0a..0c7d4ebe5d 100644
--- a/challenge-002/abigail/python/ch-1.py
+++ b/challenge-002/abigail/python/ch-1.py
@@ -1,14 +1,14 @@
#!/opt/local/bin/python
#
-# See ../READ.md
+# See https://theweeklychallenge.org/blog/perl-weekly-challenge-002
#
#
-# Run as python ch-1.py < input-file
+# Run as: python ch-1.py < input-file
#
import fileinput
for line in fileinput . input ():
- print int (line)
+ print (int (line))