Monday, March 26, 2012

exercise 9.1


"""=====================
exercise 9.1
====================="""

fin = open('words.txt')

for line in fin:
    word = line.strip()
    if len(word) > 20:
        print word

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.