2013-09-03 1 views
4

그래서이 문서에서 복사 한이 PrettyTable 예제가 있지만 오류가 발생합니다.Python PrettyTable 예제

#!/usr/bin/python 

from prettytable import PrettyTable 
import csv 

x = PrettyTable(["City name", "Area", "Population", "Annual Rainfall"]) 
x.align["City name"] = "l" # Left align city names 
x.padding_width = 1 # One space between column edges and contents (default) 
x.add_row(["Adelaide",1295, 1158259, 600.5]) 
x.add_row(["Brisbane",5905, 1857594, 1146.4]) 
x.add_row(["Darwin", 112, 120900, 1714.7]) 
x.add_row(["Hobart", 1357, 205556, 619.5]) 
x.add_row(["Sydney", 2058, 4336374, 1214.8]) 
x.add_row(["Melbourne", 1566, 3806092, 646.9]) 
x.add_row(["Perth", 5386, 1554769, 869.4]) 
print x 

이것은 내가 얻은 오류입니다.

Traceback (most recent call last): 
File "/home/definity/Desktop/Cloud/code/Python/Finacial.py", line 3, in <module> 
from prettytable import PrettyTable 
File "/usr/local/lib/python2.7/dist-packages/prettytable-0.7.2-  py2.7.egg/prettytable.py", line 35, in <module> 
import csv 
File "/home/definity/Desktop/Cloud/code/Python/csv.py", line 6, in <module> 
reader = csv.reader(ifile) 
AttributeError: 'module' object has no attribute 'reader' 
[Finished in 0.1s with exit code 1] 

어떻게 첫 번째 예에서 오류가 발생합니까?

답변

5

당신은 아마 그림자 당신의 Finacial.py 스크립트, 옆에 csv.py을 불리는 파일이 내장 된 csv 모듈 - 따라서 (더 정확하게 : 속성 액세스)의 수입을 일으키는 원인이 실패 할 수 있습니다.

아마 /home/definity/Desktop/Cloud/code/Python/csv.pyc 또는 csv 폴더 일 수도 있습니다.