Simple Script That Counts the Words in sys.stdin : Standard Read : Development PYTHON examples


PYTHON examples » Development » Standard Read »

 

Simple Script That Counts the Words in sys.stdin





import sys
text = sys.stdin.read()
words = text.split()
wordcount = len(words)

print 'Wordcount:'
print  wordcount

           
       



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo Development
» Standard Read