Ask your own question, for FREE!
MIT 6.00 Intro Computer Science (OCW) 10 Online
OpenStudy (anonymous):

Help! I use this SIMPLE code: def loadsubjects(filename): inputfile = open(filename) print inputfile for filename I use the name of a file saved in the same folder as the program...but I get a NameError saying the name of file I'm trying to open not recognized...

OpenStudy (rsmith6559):

Just for debugging, put: print filename before the open statement, so you can be sure exactly what you're getting. BTW, when you open a file, you should specify the mode that you're opening it: read, write or append. And in DOS, whether it's a binary read/write. The mode is the second argument to open: foo = open( "someFile.txt", "rb" )

OpenStudy (anonymous):

post the line of code that calls the function

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!