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 trial

Python Regular Expressions in Python Introduction to Regular Expressions Escape Hatches

Encoding 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
Aisling Dempsey
5,771 Points

the built-in function 'open' in python 2.7 does not support the paramter "encoding". That's a python 3 feature.