Python Forum
To count a number of strings in a txt file with python
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
To count a number of strings in a txt file with python
#6
>>> text = """
... spam eggs
... fish
... carrot dog worm
... mouse keyboard history lesson""".split()
>>>
>>> # with open(filename) as text:
...
>>> word_count = 0
>>> for line in text:
...   word_count += len(line.split())
...
>>> word_count
10
Reply


Messages In This Thread
RE: To count a number of strings in a txt file with python - by nilamo - Apr-29-2017, 05:22 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [SOLVED] Pad strings to always get three-digit number? Winfried 2 420 Jan-27-2024, 05:23 PM
Last Post: Winfried
  Trying to understand strings and lists of strings Konstantin23 2 836 Aug-06-2023, 11:42 AM
Last Post: deanhystad
  Delete strings from a list to create a new only number list Dvdscot 8 1,617 May-01-2023, 09:06 PM
Last Post: deanhystad
  Row Count and coloumn count Yegor123 4 1,396 Oct-18-2022, 03:52 AM
Last Post: Yegor123
  Unable to count the number of tries in guessing game. Frankduc 7 2,003 Mar-20-2022, 08:16 PM
Last Post: menator01
  Splitting strings in list of strings jesse68 3 1,831 Mar-02-2022, 05:15 PM
Last Post: DeaD_EyE
Question Help to find the largest int number in a file directory SalzmannNicholas 1 1,674 Jan-13-2022, 05:22 PM
Last Post: ndc85430
  Problem : Count the number of Duplicates NeedHelpPython 3 4,475 Dec-16-2021, 06:53 AM
Last Post: Gribouillis
  all i want to do is count the lines in each file Skaperen 13 5,006 May-23-2021, 11:24 PM
Last Post: Skaperen
  Reducing JSON character count in Python for a Twitter Bot johnmitchell85 2 59,772 Apr-28-2021, 06:08 PM
Last Post: johnmitchell85

Forum Jump:

User Panel Messages

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