Python Forum
Reading a .dat file in Python
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Reading a .dat file in Python
#3
(Apr-24-2019, 10:46 AM)Gribouillis Wrote: You know how to write the file but you don't know how to read it? This is somewhat unusual. It is a fairly simple task:
with open(fnam) as f:
    for line in f:
        # do something with the line

I want to read the file and store all the values in the arrays as I had computed. For example, acr(i,j) is a two-dimensional array, so I want to read the file and store the value in acr(i,j). I'm sorry, I don't whether I explained it clearly what I want to do. And I'm pretty new to python.
It would be helpful if you can somehow tell me how to do it.

Thank you very much.
Reply


Messages In This Thread
Reading a .dat file in Python - by mohd_umair - Apr-24-2019, 10:06 AM
RE: Reading a .dat file in Python - by Gribouillis - Apr-24-2019, 10:46 AM
RE: Reading a .dat file in Python - by mohd_umair - Apr-24-2019, 11:45 AM
RE: Reading a .dat file in Python - by Gribouillis - Apr-24-2019, 12:02 PM
RE: Reading a .dat file in Python - by mohd_umair - Apr-24-2019, 12:07 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Reading large crapy text file in anaconda to profile data syamatunuguntla 0 1,389 Nov-18-2022, 06:15 PM
Last Post: syamatunuguntla
  How to form a dataframe reading separate dictionaries from .txt file? Doug 1 5,255 Nov-09-2020, 09:24 AM
Last Post: PsyPy
  reading tab file Mandiph 1 2,789 Sep-05-2019, 01:03 PM
Last Post: ThomasL
  Reading time steps from nc file ankurk017 1 3,362 Jul-16-2018, 07:06 PM
Last Post: woooee
  reading, modifying and writing json file metalray 2 12,188 Jun-06-2018, 03:09 PM
Last Post: metalray
  Reading json file as pandas data frame? Alberto 1 9,194 Feb-05-2018, 12:43 AM
Last Post: snippsat
  matplotlib help with reading values from CSV file cps13 6 9,607 Aug-22-2017, 10:21 AM
Last Post: andre
  Need help reading in a binary file shaynehansen 2 4,613 Jun-22-2017, 10:04 AM
Last Post: zivoni

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020