diff options
| author | Mohammad S Anwar <Mohammad.Anwar@yahoo.com> | 2022-01-06 14:21:19 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-06 14:21:19 +0000 |
| commit | a3f45de7cd3ce8820a8e42ecebbe0c5031292a03 (patch) | |
| tree | 51809bfcba19b0631bf33b9586af678e5891f3e9 /challenge-002/abigail/python/ch-1.py | |
| parent | f98a27d3409f2cfd1fdcf283e9453847520869b9 (diff) | |
| parent | 74d9830dc5dbf14456f9e4f6b15d82761224b11f (diff) | |
| download | perlweeklychallenge-club-a3f45de7cd3ce8820a8e42ecebbe0c5031292a03.tar.gz perlweeklychallenge-club-a3f45de7cd3ce8820a8e42ecebbe0c5031292a03.tar.bz2 perlweeklychallenge-club-a3f45de7cd3ce8820a8e42ecebbe0c5031292a03.zip | |
Merge pull request #5480 from Abigail/abigail/week-002
Abigail/week 002
Diffstat (limited to 'challenge-002/abigail/python/ch-1.py')
| -rw-r--r-- | challenge-002/abigail/python/ch-1.py | 6 |
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)) |
