Python Forum
How can Read text file and create array?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How can Read text file and create array?
#1
I have text file (Media_id) with content and I want to create an array from the file. The content of file is like below:

1234L4
2345L4
3456L5
6384L6

and print values as
a(0)=1234L4
a(1)=2345L4
a(2)=3456L5
a(3)=6384L6
Reply
#2
Read the file and make a list should to it.
with open('media.txt') as f:
    lst = [i.strip() for i in f]
So now have list and a(0) would in this case be lst[0].
>>> lst
['1234L4', '2345L4', '3456L5', '6384L6']
>>> lst[0]
'1234L4'
>>> lst[2]
'3456L5'
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 983 Dec-19-2024, 11:57 AM
Last Post: snippsat
  Read TXT file in Pandas and save to Parquet zinho 2 1,197 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,010 Aug-26-2024, 10:14 PM
Last Post: shwfgd
  Pycharm can't read file Genericgamemaker 5 1,521 Jul-24-2024, 08:10 PM
Last Post: deanhystad
  Python is unable to read file Genericgamemaker 13 3,474 Jul-19-2024, 06:42 PM
Last Post: snippsat
  I dont understand on how to create a Bot that can read info on the screen aloud RaySuS777 0 619 Jun-19-2024, 10:02 AM
Last Post: RaySuS777
  Connecting to Remote Server to read contents of a file ChaitanyaSharma 1 3,144 May-03-2024, 07:23 AM
Last Post: Pedroski55
  Create Choices from .ods file columns cspower 3 1,716 Dec-28-2023, 09:59 PM
Last Post: deanhystad
  Recommended way to read/create PDF file? Winfried 3 4,534 Nov-26-2023, 07:51 AM
Last Post: Pedroski55
  Use PM4PY and create working file thomaskissas33 0 1,862 Nov-14-2023, 06:53 AM
Last Post: thomaskissas33

Forum Jump:

User Panel Messages

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