If I have a module File
which has some fucontions but I need globals filename and path how can I
set them so I can change them because I tryed.
filename="log.t xt"
path="/home/Bob/"
def change_filename ():
filename=raw_in put()
def change_path():
path=raw_input( )
they don't change and without the declarations there not global.
Help Please
which has some fucontions but I need globals filename and path how can I
set them so I can change them because I tryed.
filename="log.t xt"
path="/home/Bob/"
def change_filename ():
filename=raw_in put()
def change_path():
path=raw_input( )
they don't change and without the declarations there not global.
Help Please
Comment