Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8790609
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T22:42:13+00:00 2026-06-13T22:42:13+00:00

In the following code, if I use: for line in fin: It only executes

  • 0

In the following code, if I use:

for line in fin:

It only executes for ‘a’

But if I use:

wordlist = fin.readlines()
for line in wordlist:

Then it executes for a thru z.

But readlines() reads the whole file at once, which I don’t want.

How to avoid this?

def avoids():
    alphabet = 'abcdefghijklmnopqrstuvwxyz'
    num_words = {}

    fin = open('words.txt')

    for char in alphabet:
      num_words[char] = 0
      for line in fin:
        not_found = True
        word = line.strip()
        if word.lower().find(char.lower()) != -1:
          num_words[char] += 1
    fin.close()
    return num_words
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T22:42:14+00:00Added an answer on June 13, 2026 at 10:42 pm

    the syntax for line in fin can only be used once. After you do that, you’ve exhausted the file and you can’t read it again unless you “reset the file pointer” by fin.seek(0). Conversely, fin.readlines() will give you a list which you can iterate over and over again.


    I think a simple refactor with Counter (python2.7+) could save you this headache:

    from collections import Counter
    with open('file') as fin:
        result = Counter()
        for line in fin:
            result += Counter(set(line.strip().lower()))
    

    which will count the number of words in your file (1 word per line) that contain a particular character (which is what your original code does I believe … Please correct me if I’m wrong)

    You could also do this easily with a defaultdict (python2.5+):

    from collections import defaultdict
    with open('file') as fin:
        result = defaultdict(int)
        for line in fin:
            chars = set(line.strip().lower())
            for c in chars:
                result[c] += 1
    

    And finally, kicking it old-school — I don’t even know when setdefault was introduced…:

    fin = open('file')
    result = dict()
    for line in fin:
        chars = set(line.strip().lower())
        for c in chars:
            result[c] = result.setdefault(c,0) + 1
    
    fin.close()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following code: use strict; my $org_file_hash = { 'S6' => '/path/to/file/filename.txt_S6',
I use following code: x,y = line.split() x,y = float(x),float(y) Is there any way
Using the following code: use LWP::Simple; my $url= http://example.com; my $html= get $url; I
I have the following code: use Imager::Screenshot 'screenshot'; my $img = screenshot(hwnd => 'active',
I have the following code: use strict; function isDefined(variable) { return (typeof (window[variable]) ===
I have the following code I use to insert form data into a single
I have the following test code use Data::Dumper; my $hash = { foo =>
I'm using the following code to use a ListView in CustomAlertDialog Layout . public
I just use following code to add an image to my project, var paper
I use following code: Create a retry policy, when error, retry after 1 second,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.