Python Forum
Sorting Text within a .txt file
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Sorting Text within a .txt file
#4
Wavic,

To meet the first requirement for reading the lines 1-3 I was thinking the following:

import itertools
with open(students.txt, "r") as text_file:
    for line in itertools.islice(text_file,0,2):
I am trying to work on taking the line and then putting it in a tuple for that I am thinking

my_tuple = [line]


and then to step to the next 3 lines to read and store would I just use another for loop with line =+1?
Reply


Messages In This Thread
Sorting Text within a .txt file - by drogers10940 - Dec-15-2017, 10:32 PM
RE: Sorting Text within a .txt file - by squenson - Dec-15-2017, 10:43 PM
RE: Sorting Text within a .txt file - by wavic - Dec-15-2017, 11:16 PM
RE: Sorting Text within a .txt file - by drogers10940 - Dec-15-2017, 11:21 PM
RE: Sorting Text within a .txt file - by wavic - Dec-15-2017, 11:30 PM
RE: Sorting Text within a .txt file - by squenson - Dec-16-2017, 06:27 AM
RE: Sorting Text within a .txt file - by squenson - Dec-16-2017, 04:23 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Convert text from an image to a text file Evil_Patrick 5 5,921 Jul-30-2019, 07:57 PM
Last Post: DeaD_EyE
  reading text file and writing to an output file precedded by line numbers kannan 7 13,816 Dec-11-2018, 02:19 PM
Last Post: ichabod801
  Sorting File Miraclefruit 1 4,150 Apr-16-2017, 01:28 AM
Last Post: ichabod801

Forum Jump:

User Panel Messages

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