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

  • Home
  • SEARCH
  • 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 1072193
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T20:49:20+00:00 2026-05-16T20:49:20+00:00

How can I code to read the first line from a file and put

  • 0

How can I code to read the first line from a file and put it as a key value of a dictionary and keep reading next values in a iterative manner and put them as the values to the particular key they fall into in the file.
Like example:

Item Quality Cost Place

Ball     1        $12    TX
Umbrella 5        $35    NY
sweater  89       $100   LA

So here, the representation is my file. When I read, I want the dictionary to be created as in the things in bold go as keys and when i keep reading lines below that, I would have them going as multiple values in the respective keys.

thanks

  • 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-16T20:49:22+00:00Added an answer on May 16, 2026 at 8:49 pm

    You can’t have “multiple values” for a given key, but you can of course have one value per key that’s a list.

    For example (Python 2.6 or better — simply because I use the next function for generality rather than methods such as readline, but you can of course tweak that!):

    def makedictwithlists(f):
        keys = next(f).split()
        d = {}
        for k in keys: d[k] = []
        for line in f:
            for k, v in zip(keys, line.split()):
                d[k].append(v)
        return d
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This code will read a line from a text file: set file = CreateObject(Scripting.FileSystemObject).OpenTextFile(c:\number.txt,
How can I read a Chinese text file using C#, my current code can't
How to read data from Bar Code Scanner in .net windows application? Can some
I'm reading lines from a file, and I believe that once I've read all
This is my first python program - Requirement: Read a file consisting of {adId
Is there a program or API I can code against to extract individual files
Python is pretty clean, and I can code neat apps quickly. But I notice
Surprisingly as you get good at vim, you can code even faster than standard
Can VBA code instantiate and use .NET objects? The specific class I'm interested in
Can source code examples be kept in a SQL database while retaining all formatting

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.