Python PrettyTable Example

So, I have this PrettyTable example, which I copied from the documentation, but getting an error.

#!/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 

This is the error I am getting.

 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] 

Why am I getting the error message from the first example?

+4
source share
1 answer

You probably have a file called csv.py next to your Finacial.py script that hides the csv built-in module, which causes its import to fail (more precisely: access to the attribute).

It is probably /home/definity/Desktop/Cloud/code/Python/csv.py , but it could also be /home/definity/Desktop/Cloud/code/Python/csv.pyc or even the csv folder.

+5
source

Source: https://habr.com/ru/post/1500392/


All Articles