Posts: 4,646
Threads: 1,493
Joined: Sep 2016
i set up a module with a class. outside the class i import a module and define a variable. in a method of the class in can use that module or object that was imported but not that variable that was assigned a value. ok, i understand there are no globals in classes. but then, how do the modules work in this situation? what if i do
from module_name import *
and assign a variable in that module?
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Posts: 4,646
Threads: 1,493
Joined: Sep 2016
(Feb-17-2017, 06:11 PM)Larz60+ Wrote: Correct me if I am wrong, but I think your saying that you want to something like the following:
from tkinter import *
class Notepad:
def __init__(self):
self.root = Tk()
def main():
np = Notepad()
master = np.root
master.mainloop()
if __name__ == '__main__':
main()
so in this case how does any method in class Notepad find Tk ... or what if you do:
from tkinter import *
alt_Tk = Tk
class Notepad:
def __init__(self):
self.root = alt_Tk()
def main():
np = Notepad()
master = np.root
master.mainloop()
if __name__ == '__main__':
main()
in my pipelines class (not done, yet) i had a bunch of initial values assigned before the methods (and after the imports) but the assigned values did not show up even though the imports did.
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Posts: 4,646
Threads: 1,493
Joined: Sep 2016
so how is it that modules (imports) get into global scope and assignments don't?
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Posts: 4,646
Threads: 1,493
Joined: Sep 2016
how does the code in a method access the
global namespace?
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.