Re: Python 3.11.0 installation and Tkinter does not work

2022-11-21 Thread DFS
On 11/21/2022 12:59 PM, darkst...@o2online.de wrote: Dear list, I want learn python for 4 weeks and have problems, installing Tkinter. If I installed 3.11.0 for my windows 8.1 from python.org and type   >>> import _tkinter > Traceback (most recent call last): >    File "",

Re: Passing information between modules

2022-11-21 Thread Barry
> On 21 Nov 2022, at 21:23, r...@zedat.fu-berlin.de wrote: > > dn writes: >> Now, at the config stage, take the instructions to define whichever the >> user prefers, and instantiate that class. Then the 'calling-routine' can >> use the instantiated object as an interface to whichever type of

Re: Python 3.11.0 installation and Tkinter does not work

2022-11-21 Thread Thomas Passin
On 11/21/2022 1:24 PM, Stefan Ram wrote: darkst...@o2online.de writes: import _tkinter I don't know why you get this error message. Here, I do not get an error message from that line. However, the normal way to use tkinter, as far as I know, is without the underscore! You can import

Python 3.11.0 installation and Tkinter does not work

2022-11-21 Thread darkstone
Dear list, I want learn python for 4 weeks and have problems, installing Tkinter. If I installed 3.11.0 for my windows 8.1 from python.org and type   >>> import _tkinter > Traceback (most recent call last): >    File "", line 1, in > ImportError: DLL load failed while importi

Re: Passing information between modules

2022-11-21 Thread Thomas Passin
On 11/21/2022 12:24 AM, dn wrote: My original question probably was intended to be something    like: "Today, we can add attributes to a module from the    outside. How large is the risk that this will be forbidden    one day, so that all code using this will stop working?". This can happen tod