Python Forum
How to read a text file into a list or an array
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to read a text file into a list or an array
#1
Hi,

I have 2 txt files as following:
1st - '[4,6,3,5]'
2nd - '[3,6],[6,2,7]'

I wonder if there is anyway to read it into a list or an array like:
1st - array [4,6,3,5]
2nd - array [[3,6],[6,2,7]]
Reply
#2
One can use Python built-in module ast function ast.literal_eval() for safe evaluation of strings (note that it gives tuple of lists, not list of lists):

>>> import ast
>>> first = '[4,6,3,5]'
>>> ast.literal_eval(first)
[4, 6, 3, 5]
>>> type(_)
list
>>> second = '[3,6],[6,2,7]'
>>> ast.literal_eval(second)
([3, 6], [6, 2, 7])
>>> type(_)
tuple 
I'm not 'in'-sane. Indeed, I am so far 'out' of sane that you appear a tiny blip on the distant coast of sanity. Bucky Katt, Get Fuzzy

Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.
Reply
#3
Thank a lot! It worked perfectly.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How to read a file as binary or hex "string" so that I can do regex search? tatahuft 3 1,169 Dec-19-2024, 11:57 AM
Last Post: snippsat
  Get an FFMpeg pass to subprocess.PIPE to treat list as text file? haihal 2 1,065 Nov-21-2024, 11:48 PM
Last Post: haihal
  Read TXT file in Pandas and save to Parquet zinho 2 1,285 Sep-15-2024, 06:14 PM
Last Post: zinho
  JSON File - extract only the data in a nested array for CSV file shwfgd 2 1,087 Aug-26-2024, 10:14 PM
Last Post: shwfgd
  Pycharm can't read file Genericgamemaker 5 1,610 Jul-24-2024, 08:10 PM
Last Post: deanhystad
  Python is unable to read file Genericgamemaker 13 3,871 Jul-19-2024, 06:42 PM
Last Post: snippsat
  Connecting to Remote Server to read contents of a file ChaitanyaSharma 1 3,357 May-03-2024, 07:23 AM
Last Post: Pedroski55
  PyYAML read list of int zisco 2 1,702 Apr-02-2024, 12:36 PM
Last Post: zisco
  Recommended way to read/create PDF file? Winfried 3 4,897 Nov-26-2023, 07:51 AM
Last Post: Pedroski55
  python Read each xlsx file and write it into csv with pipe delimiter mg24 4 3,905 Nov-09-2023, 10:56 AM
Last Post: mg24

Forum Jump:

User Panel Messages

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