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 trialharmeet
698 PointsEncoding Error while opening a File
Hi there,
a = open("names.txt",encoding ="utf-8") TypeError: 'encoding' is an invalid keyword argument for this function
I'm getting the above error while using the encoding keyword.
When I do a = open("names.txt"), it works fine.
I'm using Python 2.7.10 in a virtualenv on Mac OS X EI Capitan 10.11.4
1 Answer
Aisling Dempsey
5,771 Pointsthe built-in function 'open' in python 2.7 does not support the paramter "encoding". That's a python 3 feature.