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 Reading Files

How to can i get some file to read with a directory!!

What if i have a file in some where in my computer , how to get it to read by directory

1 Answer

You need to use the open() function. Here is an example:

To open a file called test.txt and save to to a variable you would do this:

with open('test.txt', 'r') as f:
    contents = f.read()

Now you can access it by referencing the variable "contents". If your file is somewhere else, you’ll have to use an absolute path like this: "/Users/You/Desktop/something.txt" instead of just the file name.