[email protected] wrote:
I execute my code in linux environment. My code is:from os import * def insert_text_file(self, strng): t=open("elements_file.txt", "a") t.write(strng) t.close() I'm getting this error: <type 'exception.TypeError'>: an integer is required Where is the mistake? Help me, please!!
Tell us the Python version and give the *full* traceback message, not just the last line. I am pretty sure you also left out an important part of the code you executed to get that message.
tjr -- http://mail.python.org/mailman/listinfo/python-list
