New Reply

Newbie python question

 
Share Thread
Jun10-11, 08:51 PM   #1
 

Newbie python question


1. The problem statement, all variables and given/known data

Hi, this might be silly but I'm not sure what the syntax is for the read function...

I'm trying to open a file on my desktop, it is a text file called testfile.txt, how do I make python know where to find it?

I go:

f = open('C:\Users\Truman\Desktop\testfile.txt', 'r')

or

f = open('testfile.txt', 'r')

but neither works.

Does the file need to be in the same directory as where I installed Python?

Thanks.

2. Relevant equations



3. The attempt at a solution
PhysOrg.com science news on PhysOrg.com

>> City-life changes blackbird personalities, study shows
>> Origins of 'The Hoff' crab revealed (w/ Video)
>> Older males make better fathers: Mature male beetles work harder, care less about female infidelity
Jun10-11, 10:42 PM   #2
 
Blog Entries: 9
Recognitions:
Gold Membership Gold Member
Code:
f = open(filename, mode)
should work if you specify the file path.

Are you getting an IOError? Also, if you directly use the file() constructor, can you open the file?
Jun15-11, 11:01 PM   #3
 
Ok I realized I couldn't open the file in IDLE.. but only with the actual program.
Jun16-11, 12:00 AM   #4
 

Newbie python question


Either use double backslashes, '\\', or single forward slashes, '/'. Otherwise you have characters like '\t', which is the tab character, embedded in your filename.
Jun17-11, 12:26 AM   #5
 
Blog Entries: 9
Recognitions:
Gold Membership Gold Member
Wow...it's been so long since I've used Python on Windows that I forgot about that.
New Reply

Similar discussions for: Newbie python question
Thread Forum Replies
Compile Python, Matlab and Python Programming & Comp Sci 3
Python question Engineering, Comp Sci, & Technology Homework 1
Beginner Python question Engineering, Comp Sci, & Technology Homework 10
Fortran/Python newbie tired of slogging through "anti-tutorials" online. Programming & Comp Sci 7
Python question Engineering, Comp Sci, & Technology Homework 2