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

The Archive Base Latest Questions

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

Hi I have a code to read the csv file import csv d =

  • 0

Hi
I have a code to read the csv file

import csv
d = csv.reader(open('C:/Documents and Settings/242481/My Documents/file.csv'))
for row in d:
    print row

This code returns all the rows in the csv file
Is there any way i can read one row at a time.
And each time i execute the print line i need to get the next row.
Thanks in advance
Aadith

  • 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-20T05:49:46+00:00Added an answer on May 20, 2026 at 5:49 am

    it should work the way you have it, but maybe the EOL characters are not what is expected for the system you’re on. try opening it with ‘rU’: open(‘file.csv’, ‘rU’)

    to verify that it’s printing one row at a time, you could print a blank line between rows:

    
    for row in d:
     print row
     print
    

    or pause it:

    for row in d:
     print row
     raw_input('continue-> ')
    

    For your other code, it should be something like:

    
    def value():
     infile=open("C:/Documents and Settings/242481/My Documents/file.csv", "rU")
     data = [row for row in infile]
     infile.close()
     return data
    

    Always close your open files. It’s good practice, even though not always strictly necessary. And ‘file’ is a Python class name. Although you can use these any way you wish, doing so can lead to hard-to-find bugs later on.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a csv file like 120 column by 4500 row. I read the
I usually do not have difficulty to read JavaScript code but for this one
I have got the following code from here to read an Excel file using
In my app, i have an import option, to read info from a .csv
Imagine I have some code to read from the start to end of a
I have a very large codebase (read: thousands of modules) that has code shared
I have to call ping from c++ code.I'd like to easily read the output
I have code to create another row (div with inputs) on a button click.
I have code similar to this filtering entries in an Array of Objects: var
I have code like this: var newMsg = new Msg { Var1 = var1,

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.