Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im trying to compare a users input with a .txt file but they never equal. The .txt contains the number 12. When I check to see what the .txt is it prints out as

<_io.TextIOWrapper name='text.txt' encoding='cp1252'>

my code is

import vlc
a = input("test ")
rflist = open("text.txt", "r")
print(a)
print(rflist)
if rflist == a:
    p = vlc.MediaPlayer('What Sarah Said.mp3')
    p.play()
else:
    print('no')

so am i doing something wrong with my open() or is it something else entirely

share|improve this question
1  
You're not reading the documentation or some tutorial, that's the problem ;) – delnan Dec 18 '10 at 0:36

2 Answers

To print the contents of the file instead of the file object, try

print(rflist.read())

instead of

print(rflist)

A file object is not the text contained in the file itself, but rather a wrapper object that facilitates operations on the file, like reading its contents or closing it.

share|improve this answer

rflist.read() or f.readline() is correct.

Read the documentation section 7.2

Dive Into Python is a fantastic book to start Python. take a look at it and you can not put it down.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.