Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Reading a text file
#5
How about: (using Python 3)

from itertools import islice
with open(file_name) as fd:
    alternatelines = islice(fd, 0, None, 2)
    for line in alternatelines:
        print(len(line.rstrip()))
Same principle as above, but uses islice from itertools to step through the file by 2 lines at a time. (I used rstrip on assumption that each line has a newline character at the end.)
I am trying to help you, really, even if it doesn't always seem that way
Reply


Messages In This Thread
Reading a text file - by fivestar - Oct-11-2017, 11:49 PM
RE: Reading a text file - by Larz60+ - Oct-12-2017, 12:33 AM
RE: Reading a text file - by wavic - Oct-12-2017, 11:26 AM
RE: Reading a text file - by DeaD_EyE - Oct-12-2017, 12:13 PM
RE: Reading a text file - by gruntfutuk - Oct-12-2017, 04:39 PM
RE: Reading a text file - by DeaD_EyE - Oct-12-2017, 06:55 PM
RE: Reading a text file - by snippsat - Oct-12-2017, 08:38 PM
RE: Reading a text file - by gruntfutuk - Oct-13-2017, 07:25 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Excel File reading vanjoe198 1 2,039 Mar-31-2021, 11:53 AM
Last Post: snippsat
  Reading a text until matched string and print it as a single line cananb 1 2,033 Nov-29-2020, 01:38 PM
Last Post: DPaul
  reading from a file looseCannon101 14 4,915 Jul-18-2020, 11:29 AM
Last Post: GOTO10
  Convert text from an image to a text file Evil_Patrick 5 4,298 Jul-30-2019, 07:57 PM
Last Post: DeaD_EyE
  Weird problem with reading from file and performing calculations pineapple999 1 3,006 Jul-25-2019, 01:30 AM
Last Post: ichabod801
  Handling IO Error / Reading from file Expel 10 4,849 Jul-18-2019, 01:21 PM
Last Post: snippsat
  Reading an Unconventional CSV file OzSbk 2 3,877 May-17-2019, 12:15 PM
Last Post: MvGulik
  reading text file and writing to an output file precedded by line numbers kannan 7 10,409 Dec-11-2018, 02:19 PM
Last Post: ichabod801
  Reading of structured .mat (matlab) file sumit 2 3,421 May-24-2018, 12:12 PM
Last Post: sumit
  File Reading toxicxarrow 9 5,185 May-07-2018, 04:12 PM
Last Post: toxicxarrow

Forum Jump:

User Panel Messages

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