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 5845385
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T12:25:37+00:00 2026-05-22T12:25:37+00:00

Suppose I am parsing a fixed-width file: file_format = {‘year’ : (0, 3, int),

  • 0

Suppose I am parsing a fixed-width file:

file_format = {'year' : (0, 3, int), 'price' : (4, 10, float)}
for lineno, line in enumerate(input_file):
    try:
        fields = {k : v[2](line[v[0]:v[1]]) for k, v in file_format.items()}
    except ValueError:
        print("cannot parse line {}".format(lineno))

I would like to add to the exception printout the information about which particular field couldn’t be parsed. Is there any way I could retrieve k and v values without replacing the dict comprehension with a loop?

  • 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-05-22T12:25:38+00:00Added an answer on May 22, 2026 at 12:25 pm

    You could shift the problematic part into a function

    file_format = {'year' : (0, 3, int), 'price' : (4, 10, float)}
    
    def build_value(v):
        try:
            return v[2](line[v[0]:v[1]])
        except ValueError:
            print("cannot parse line {}".format(lineno))
    
    for lineno, line in enumerate(input_file):
        fields = {k : build_value(v) for k, v in file_format.items()}
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using Scala combinatorial parser by extending scala.util.parsing.combinator.syntactical.StandardTokenParser . This class provides following
Suppose you have a dictionary that contains valid words. Given an input string with
Suppose all that happens initially in a client swf is a user clicks a
I have been using DOM for a long time and as such DOM parsing
I suppose that after the HTTPRio component receives the data, it parses the data.
I have this data file, which is supposed to be a normal ASCII file.
I'm writing a program for a school project that is supposed to emulate the
I'm kind of new to ASN.1, so I don't know if I have invalid
I'm struggling with paperclip and adding the attached images to albums. Should I be
While the process is executing a blocking system call, say read or write, signal

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.