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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T18:04:13+00:00 2026-05-22T18:04:13+00:00

How can I make OrderedDict from csv? Is there any function? csv: 1 one

  • 0

How can I make OrderedDict from csv? Is there any function?

csv:

1 one
2 two

OrderedDict:

OrderedDict((('1', 'one'), ('2', 'two')))
  • 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-22T18:04:14+00:00Added an answer on May 22, 2026 at 6:04 pm

    If your csv has two columns as described in your question, you can do this:

    import csv
    import collections
    
    with open('foo.csv','rb') as f:
        r = csv.reader(f)
        od = collections.OrderedDict(r)
    

    If the rows in the csv file were formatted as key, value1, value2, value3 you would do this:

    with open('foo.csv','rb') as f:
        r = csv.reader(f)
        od = collections.OrderedDict((row[0], row[1:]) for row in r)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I can make it work this way Dir.chdir(basedir) puts Dir.glob(#{filename}*).inspect Is there any way
Is there anyway I can make the process of adding references to C# projects
How i can make an xml file from NSString object? In other words, how
how i can make windows server 2003 see some directory from UNIX-AIX ? i
I can make a sequence of numbers like this: s = seq(from=1, to=10, by=1)
How can make custom Exception Handling on objective C... Any useful tutorial please guide
I know i can make use of sort() function in Groovy to sort List.
How Can Make media For Each app In One Project??? For Example I Have
in Objective C one can make use of key value observing to get notifications
I can make a DAO recordset in VB6/Access do anything - add data, clean

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.