Paride_19
Profilo di
Nome | Paride_19 |
---|---|
Indirizzo email | n/a |
Messaggi | 1 |
-
- 2022-07-12 09:59:28
- Re: Problema con Tkinter()
- Forum >> Programmazione Python >> GUI
-
Salve, mi sono appena approcciato a python e a tkinter ma non riesco a creare una finestra...
Scrivo:
import tkinter as tk
root = tk.Tk()
root.mainloop ()
l'errore che mi dà è il seguente:
Traceback (most recent call last):
File "c:\Users\Nicola surface pro\Desktop\Paride_python\tkinter.py", line 1, in <module>
import tkinter as tk
File "c:\Users\Nicola surface pro\Desktop\Paride_python\tkinter.py", line 3, in <module>
root = tk.Tk ()
AttributeError: partially initialized module 'tkinter' has no attribute 'Tk' (most likely due to a circular import). Did you mean: 'tk'?