-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d3f9822
commit 07006ce
Showing
31 changed files
with
56 additions
and
56 deletions.
There are no files selected for viewing
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
54 changes: 27 additions & 27 deletions
54
.../7 - Tkinter 01/MateusAdada_Tkinter_01.py → .../7 - Tkinter 01/MateusAdada_Tkinter_01.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |
File renamed without changes
58 changes: 29 additions & 29 deletions
58
.../8 - Tkinter 02/MateusAdada_Tkinter_02.py → .../8 - Tkinter 02/MateusAdada_Tkinter_02.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.