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

Join 132,401 Programmers for FREE! Get instant access to thousands of experts, tutorials, code snippets, and more! There are 1,213 people online right now. Registration is fast and FREE... Join Now!




Reading from a text file into 2D array

 
Reply to this topicStart new topic

Reading from a text file into 2D array, python

rancor
post 30 Aug, 2008 - 01:06 PM
Post #1


New D.I.C Head

*
Joined: 30 Nov, 2007
Posts: 22



Thanked 2 times
My Contributions


I've been trying to read floating point literals into a 2D array and have unusual results. When i read this file:
1 1.5 0 2
3 3.25 3 1.67

the code below prints out the list [[1.0, 1.5, 0.0, 2.0], [3.0, 3.25, 3.0, 1.6699999999999999]] . If anyone has any suggestions as to why the final number is approximated or knows of a better way of reading the file, please let me know. Thanks!

CODE

def main():
    DEFAULT_DIR = <put the directory where you store the text file>
    arr = []
    f = open(DEFAULT_DIR + 'input.txt', 'r')
    for line in f:
        arr.append(map(float, line.split()))
        
    print arr

if __name__ == '__main__':
    main()
User is offlineProfile CardPM

Go to the top of the page

paddy3118
post 30 Aug, 2008 - 10:37 PM
Post #2


New D.I.C Head

*
Joined: 28 May, 2007
Posts: 4


My Contributions


QUOTE(rancor @ 30 Aug, 2008 - 02:06 PM) *

I've been trying to read floating point literals into a 2D array and have unusual results. When i read this file:
1 1.5 0 2
3 3.25 3 1.67

the code below prints out the list [[1.0, 1.5, 0.0, 2.0], [3.0, 3.25, 3.0, 1.6699999999999999]] . If anyone has any suggestions as to why the final number is approximated or knows of a better way of reading the file, please let me know. Thanks!



Try this:
http://www.python.org/doc//tut/node16.html
User is offlineProfile CardPM

Go to the top of the page

Fast ReplyReply to this topicStart new topic
Time is now: 11/22/08 07:54AM

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