⇤ ← Revision 1 as of 2011-12-17 17:21:31
Size: 1094
Comment:
|
Size: 1104
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 8: | Line 8: |
I am writing a program that uses text files to store user information like their name and password. I am using this information to check login info against the info they have provided. This never worked so I decoded to do a simple open files program to find the problem. f = open('test.txt', 'r') a = f.read f.close print(a) |
I am writing a program that uses text files to store user information like their name and password. I am using this information to check login info against the info they have provided. This never worked so I decided to do a simple open files program to find the problem./n f = open('test.txt', 'r')/n a = f.read/n f.close/n print(a)/n |
Asking for Help: ...
...
I am writing a program that uses text files to store user information like their name and password. I am using this information to check login info against the info they have provided. This never worked so I decided to do a simple open files program to find the problem./n f = open('test.txt', 'r')/n a = f.read/n f.close/n print(a)/n
and when I ran it on Idle it printed: <built-in method read of _io.TextIOWrapper object at 0x02954558> Instead of what I had in my text file. Does anyone know why this is happening or how to stop it?
When answering questions, add the CategoryAskingForHelpAnswered category when saving the page. This will move the link to this page from the questions section to the answers section on the Asking for Help page.