NOSSO MENU

terça-feira, 30 de março de 2021

Nome do aplicativo Tkinter com python

 Fala ai pessoal!

Segue abaixo um código simples usando o Tkinter e o Python para fazer uma interface simples.

Obs: Se for utilizar esse código as regras de formatação do Python.


# calculator with Tkinter and python


import tkinter


class calculator(tkinter.Tk):

      def __init__(self, parent):

          tkinter.Tk.__init__(self,parent)

          self.parent = parent

          

      def principal(self):

          """window main"""

          pass

        

if __name__=="__main__":

   app = calculator(None)#initialize the loop

   #window = tkinter.Tk()#crated aplication root and window

   app.title("CALCULADORA")

   app.root.geometry("320x200")

   app.mainloop()


Até a próxima!

Nenhum comentário:

Postar um comentário

Redes Sociais

anuncios