Python Forum
Problem reading data from file
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Problem reading data from file
#1
I am trying to read a simple colum vector as

mediaXoriginal = open('posx_mean_no_acoplo_tf_multiple.txt', 'r') 
and then

print(mediaXoriginal.read)
However, the resulting output is

Output:
<built-in method read of _io.TextIOWrapper object at 0x0000018430573EA0>
The file, posx_mean_no_acoplo_tf_multiple.txt only has numbers and I need to have a vector to later use an interpolation function.

Any help is appreciated.

Thanks.
Reply
#2
You must not show the (address of) the function, but execute the function by adding ().
print(mediaXoriginal.read())
Reply
#3
(May-22-2020, 08:17 AM)ibreeden Wrote: You must not show the (address of) the function, but execute the function by adding ().
print(mediaXoriginal.read())

EDIT: I have found the syntax error. Your answer works fine. Thanks.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
Sad problems with reading csv file. MassiJames 3 559 Nov-16-2023, 03:41 PM
Last Post: snippsat
  Reading a file name fron a folder on my desktop Fiona 4 851 Aug-23-2023, 11:11 AM
Last Post: Axel_Erfurt
  Reading data from excel file –> process it >>then write to another excel output file Jennifer_Jone 0 1,048 Mar-14-2023, 07:59 PM
Last Post: Jennifer_Jone
  Reading a file JonWayn 3 1,059 Dec-30-2022, 10:18 AM
Last Post: ibreeden
  Reading Specific Rows In a CSV File finndude 3 940 Dec-13-2022, 03:19 PM
Last Post: finndude
  Excel file reading problem max70990 1 865 Dec-11-2022, 07:00 PM
Last Post: deanhystad
  Reading All The RAW Data Inside a PDF NBAComputerMan 4 1,276 Nov-30-2022, 10:54 PM
Last Post: Larz60+
  Replace columns indexes reading a XSLX file Larry1888 2 951 Nov-18-2022, 10:16 PM
Last Post: Pedroski55
  Reading Data from JSON tpolim008 2 1,032 Sep-27-2022, 06:34 PM
Last Post: Larz60+
  Failing reading a file and cannot exit it... tester_V 8 1,757 Aug-19-2022, 10:27 PM
Last Post: tester_V

Forum Jump:

User Panel Messages

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