Differences between revisions 2 and 3
Revision 2 as of 2011-12-17 17:22:23
Size: 1104
Editor: host-92-26-97-45
Comment:
Revision 3 as of 2011-12-17 17:24:54
Size: 1110
Editor: host-92-26-97-45
Comment:
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
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.
Line 8: Line 9:
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
{{{#!python
f = open('test.txt', 'r')
a = f.read
f.close
print(a)
}}}

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.

Toggle line numbers
   1 f = open('test.txt', 'r')
   2 a = f.read
   3 f.close
   4 print(a)

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.


CategoryAskingForHelp

Asking for Help/Why when I read a text file python reads it as "<built-in method read of _io.TextIOWrapper object at 0x02954558>" and how do I stop this? (last edited 2011-12-17 18:41:17 by PaulBoddie)

Unable to edit the page? See the FrontPage for instructions.