vote up 0 vote down star

Say I am importing the module 'foo' into the module 'bar'. Is it possible for me to change a global variable in foo inside bar?

Let the global variable in foo be 'arbit'. Change arbit so that if bar were to call a function of foo that uses this variable, the updated variable is used rather than the one before that.

flag

79% accept rate

1 Answer

vote up 4 vote down check

You should be able to do:

import foo
foo.arbit = 'new value'
link|flag
Thanks. This works. Had tried it but there was some other error in the program so thought there might be some catch. – Goutham Sep 3 at 10:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.