Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialHaben Gebremeskel
Python Development Techdegree Student 4,569 PointsTypeError: 'newline'
I am getting a TypeError: 'newline' is an invalid keyword argument for this function when I run the same code Kenneth posted in the video. By the way I am using PyCharm! Thanks!
import csv
with open('museum.csv', newline='') as csvfile: artreader = csv.reader(csvfile, delimiter='|') rows = list(artreader) for row in rows[:2]:
print(', '.join(row))
1 Answer
joo
Python Development Techdegree Graduate 16,498 PointsI guess you are using older version of Python since it's not supported, make sure you have at least v3.2 to use the newline
keyword.
To check for Python version on your computer, enter python --version
in the terminal/bash.