Learning tkinter

Grant Edwards grant.b.edwards at gmail.com
Thu May 18 09:13:52 EDT 2023


On 2023-05-12, Rob Cliffe via Python-list <python-list at python.org> wrote:
>
> Python 3.8.3 (tags/v3.8.3:6f8c832, May 13 2020, 22:20:19) [MSC v.1925 32 
> bit (Intel)] on win32
> Type "help", "copyright", "credits" or "license" for more information.
> >>> import tkinter
> >>> tkinter.messagebox
> Traceback (most recent call last):
>    File "<stdin>", line 1, in <module>
> AttributeError: module 'tkinter' has no attribute 'messagebox'
> >>>

$ python
Python 3.11.3 (main, May  8 2023, 09:00:54) [GCC 12.2.1 20230428] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import tkinter
>>> from tkinter import messagebox
>>> messagebox
<module 'tkinter.messagebox' from '/usr/lib/python3.11/tkinter/messagebox.py'>
>>> 


> Why is this?

Dunno.


More information about the Python-list mailing list