Welcome to Dream.In.Code
Getting Help is Easy!

Join 105,414 Programmers for FREE! Ask your question and get quick answers from experts. There are 1,823 online right now! We've got more than 500 tutorials and 2,000 snippets. Join and find out why Dream.In.Code is the #1 programming help community on the internet! Registration is fast and FREE... Join Now!



How to read word by word from a file using python?

 
Reply to this topicStart new topic

How to read word by word from a file using python?

gijig
post 14 May, 2008 - 10:35 AM
Post #1


New D.I.C Head

*
Joined: 14 May, 2008
Posts: 5

I am a beginner in python. I need help from you guys. If possible give me the sites for some python codes.
User is offlineProfile CardPM

Go to the top of the page


Moezzie
post 24 Jun, 2008 - 04:41 PM
Post #2


New D.I.C Head

*
Joined: 25 Nov, 2007
Posts: 42


My Contributions


The easies way i can think of is reading the hole file (or line by line) into a string and then splitting the it at every space. You will end up with a list containing all the words in file.

I would do this with the split() function. You can read about it here:
http://docs.python.org/lib/string-methods.html
User is offlineProfile CardPM

Go to the top of the page

ibbie
post 7 Jul, 2008 - 10:29 AM
Post #3


New D.I.C Head

Group Icon
Joined: 7 Jul, 2008
Posts: 8



Dream Kudos: 75
My Contributions


Quick and dirty, assumes there's a file in the current working directory called "test.txt"

CODE
--($:~)-- cat test.txt
This line is split into words.


CODE
def getwords(file):
    """
    >>> for word in getwords('test.txt'):
    ...     print 'word: %s' % word
    ...
    word: This
    word: line
    word: is
    word: split
    word: into
    word: words.
    """

    f = open(file, 'r')
    for line in f:
        for word in line.split(' '):
            yield word.strip()



A good google search would be "python iterate over file"
User is offlineProfile CardPM

Go to the top of the page

Fast ReplyReply to this topicStart new topic
Time is now: 8/20/08 05:51AM

Live Help!

Tutorials

Programming

Web Development

Reference Sheets

Code Snippets

Bye Bye Ads

Free DIC T-Shirt

T-Shirt Example

Related Sites

Monthly Drawing

Thumb Drive

Partners

Top Contributors

Top 10 Kudos This Month