开发者

python beginner questions

开发者 https://www.devze.com 2023-01-08 18:58 出处:网络
i just installed python i am trying to run this script: import csv reader = csv.reader(open(\"some.csv\", \"rb\"))

i just installed python

i am trying to run this script:

import csv
reader = csv.reader(open("some.csv", "rb"))
for row in reader:
    print row

i am running开发者_StackOverflow中文版 on windows.

  1. do i have to type each line individually into python shell or can i save this code into a text file and then run it from the shell?
  2. where does some.csv have to be in order to run it? in the same c:\python26 folder?
  3. what is this code supposed to do?


  1. Yes, you can create a file. The interactive shell is only for learning syntax, etc., and toying with ideas. It's not for writing programs.

    a. Note that the script must have a .py extension, e.g., csvprint.py. To run it, you enter python csvprint.py. This will try to load csvprint.py from the current directory and run it.

  2. The some.csv file has to be in the current working directory, which doesn't have to be (in fact, almost never should be) in the Python folder. Usually this will be you home directory, or some kind of working area that you setup, like C:\work. It's entirely up to you, though.

  3. Without knowing the csv module that well myself, I'm guessing it reads CSV separated values from the file as tuples and prints each one out on the console.

One final note: The usual way to write such logic is to take the input from the command-line rather than hard-coding it. Like so:

import csv
reader = csv.reader(open(sys.argv[1], "rb"))
for row in reader:
    print row

And run it like so:

python csvprint.py some.csv

In this case you can put some.csv anywhere:

python csvprint.py C:\stuff\csvfiles\some.csv


When you have IDLE open, click File > New Window. (Or hit Ctrl + N)

This opens up a new window for you that's basically just a text editor with Python syntax highlighting. This is where you can write a program and save it. To execute it quickly, hit F5.


  1. You can do both! To run the code from a text file (such as 'csvread.py', but the extension doesn't matter), type: python csvread.py at the command prompt. Make sure your PATH is set to include the Python installation directory.

  2. "some.csv" needs to be in the current directory.

  3. This code opens a Python file descriptor specifically designed to read CSVs. The reader file descriptor then prints out each row of the CSV in order. Check the documentation out for a more detailed example: http://docs.python.org/library/csv.html


  1. Type the code into a *.py file, and then execute it.
  2. I think the file should be in the same folder as your *.py script.
  3. This opens a file stored in comma separated value format and prints the contents of each row.


All import does "Python code in one module gains access to the code in another module by the process of importing it. The import statement is the most common way of invoking the import machinery, but it is not the only way". The so-called CSV (Comma Separated Values) format is the most common import and export format for spreadsheets and databases. There is no “CSV standard”, so the format is operationally defined by the many applications which read and write it. The lack of a standard means that subtle differences often exist in the data produced and consumed by different applications. These differences can make it annoying to process CSV files from multiple sources. Still, while the delimiters and quoting characters vary, the overall format is similar enough that it is possible to write a single module which can efficiently manipulate such data, hiding the details of reading and writing the data from the programmer.

The CSV module implements classes to read and write tabular data in CSV format. It allows programmers to say, “write this data in the format preferred by Excel,” or “read data from this file which was generated by Excel,” without knowing the precise details of the CSV format used by Excel. Programmers can also describe the CSV formats understood by other applications or define their own special-purpose CSV formats. All your code is doing is looping through that file.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号