erict1689 schrieb:
def closeUp():
# Purpose: end of program housekeeping
global empName, previousYTD, payRate, hoursWorked, recordCount,
eof, payFile, \
payFileUpdated, newYTD, currentPay
payFile.close()
payFileUpdated.close()
print "\nNumber of records in the
erict1689 a écrit :
I am writing this program in which I open up a file and update that
information but to a new file. I already have a global variable for
it
A global variable ??? WHY ???
but how do I go about creating an openable file in the source code?
It's in the FineManual(tm)
If
On Oct 15, 12:47 pm, "erict1689" <[EMAIL PROTECTED]> wrote:
> I am writing this program in which I open up a file and update that
> information but to a new file. I already have a global variable for
> it but how do I go about creating an openable file in the source code?
> If it helps here is wh