Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python
- import sys
- import string
- # input comes from STDIN (standard input)
- for line in sys.stdin:
- # remove leading and trailing whitespace
- line = line.strip()
- # split the line into words
- words = line.split()
- # increase counters
- for word in words:
- # write the results to STDOUT (standard output);
- # what we output here will be the input for the
- # Reduce step, i.e. the input for this
- #
- # tab-delimited; the trivial word count is 1
- if len(word) == 1:
- continue
- for letter in word:
- if letter in string.ascii_letters:
- print '%s\t%s' % (word, 1)
- break
Add Comment
Please, Sign In to add comment