Skip to content

Commit

Permalink
Renamed files
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusadada committed Dec 5, 2023
1 parent d3f9822 commit 07006ce
Show file tree
Hide file tree
Showing 31 changed files with 56 additions and 56 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
from tkinter import *


class Janela(Tk):
form = None
calc = None
resultado = None

def __init__(self):
super().__init__()
self.title('Calculadora para Estatística')
self.geometry('800x600')
self.inicialize()

def inicialize(self):
self.form = Entry(self)
self.calc = Button(self, text='Calcule')
self.resultado = Label(self, text='Resultado', fg='blue')

self.form.pack()
self.calc.pack()
self.resultado.pack()


# programa principal
janela = Janela()
janela.mainloop()
from tkinter import *


class Janela(Tk):
form = None
calc = None
resultado = None

def __init__(self):
super().__init__()
self.title('Calculadora para Estatística')
self.geometry('800x600')
self.inicialize()

def inicialize(self):
self.form = Entry(self)
self.calc = Button(self, text='Calcule')
self.resultado = Label(self, text='Resultado', fg='blue')

self.form.pack()
self.calc.pack()
self.resultado.pack()


# programa principal
janela = Janela()
janela.mainloop()
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
from tkinter import *


class Janela(Tk):
form = None
calc = None
resultado = None

def __init__(self):
super().__init__()
self.title('Calculadora para Estatística')
self.geometry('800x600')
self.inicialize()

def inicialize(self):
self.form = Entry(self)
self.calc = Button(self, text='Calcule')
self.resultado = Label(self, text='Resultado', fg='blue')

self.form.grid(row=0, column=0)
self.calc.grid(row=1, column=0)
self.resultado.grid(row=2, column=0)

self.anchor('n')


# programa principal
janela = Janela()
janela.mainloop()
from tkinter import *


class Janela(Tk):
form = None
calc = None
resultado = None

def __init__(self):
super().__init__()
self.title('Calculadora para Estatística')
self.geometry('800x600')
self.inicialize()

def inicialize(self):
self.form = Entry(self)
self.calc = Button(self, text='Calcule')
self.resultado = Label(self, text='Resultado', fg='blue')

self.form.grid(row=0, column=0)
self.calc.grid(row=1, column=0)
self.resultado.grid(row=2, column=0)

self.anchor('n')


# programa principal
janela = Janela()
janela.mainloop()

0 comments on commit 07006ce

Please sign in to comment.