Profilo di asterion

Nome asterion
Indirizzo email n/a
Messaggi1
  • Re: Problema con Tkinter()
    Forum >> Programmazione Python >> GUI
    Con Python 3.5.1 su Window 7 ho appena provato:

    import tkinter
    finestra = tkinter.Tk()


    e visualizza immediatamente la finestra, anche senza invocare mainloop(). Appena torno a casa voglio provare con Ubuntu per verificare il comportamento.

    Mi permetto di aggiungere un suggerimento preso dalla PEP 8:
    "Wildcard imports ( from <module> import * ) should be avoided, as they make it unclear which names are present in the namespace, confusing both readers and many automated tools."
    Personalmente, quando il modulo è troppo lungo utilizzo l'opzione "as":
    import moduloTKnomelunghissimo as modTK
    Un saluto a tutti e buona programmazione!