-
Notifications
You must be signed in to change notification settings - Fork 0
/
calculo_entre_bases.py
171 lines (152 loc) · 4.25 KB
/
calculo_entre_bases.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
from tkinter import *
janela1=Tk()
base10=0
largura=400
altura=325
txb=Entry(janela1,
font="Arial 12 bold italic",
width=20,
bd=5,
relief='groove',
justify=LEFT
)
x=Button(janela1,
text='teste')
def binario():
b2=(f'Convertido para BINÁRIO é: {bin(base10) [2:]}')
return b2
def octal ():
b8=(f'Convertido para OCTAL é: {oct(base10) [2:]}')
return b8
def hexadecimal ():
b16=(f'Convertido para HEXADECIMAL é: {hex(base10) [2:]}')
return b16
janela1.title('Missão Prática | Nível 2')
largura1=janela1.winfo_screenwidth()
altura1=janela1.winfo_screenheight()
posicao_x=largura1/2-largura/2
posicao_y=altura1/2 - altura/2
janela1.geometry(f"%dx%d+%d+%d" % (largura, altura, posicao_x,posicao_y))
label1=Label(janela1,
text='Sistema de Conversão Entre Bases',
font='Arial 16 bold italic',
fg="#1a8cff",
width=30,
height=1,
anchor=N,
padx=2,
pady=2,
justify=CENTER
)
label2=Label(janela1,
text='''Converter da Base 10 para as Bases\n(Binária,Octal e Hexadecimal)''',
font='Arial 16 bold',
fg="#000000",
bd=5,
relief='groove',
anchor=CENTER,
padx=10,
pady=19,
justify=CENTER
)
label3=Label(janela1,
text='Digite um Número Inteiro:',
font='Arial 12 bold',
fg="#000000",
bd=5, # Borda
relief='groove',
padx=1,
pady=1,
)
label_b=Label(janela1,
text='BINÁRIO:',
font='Arial 12 bold',
fg="#000000",
width=40,
height=1,
anchor=W,
padx=1,
pady=1,
)
label_o=Label(janela1,
text='OCTAL:',
font='Arial 12 bold',
fg="#000000",
width=40,
height=1,
anchor=W,
padx=1,
pady=1,
)
label_h=Label(janela1,
text='HEXADECIMAL:',
font='Arial 12 bold',
fg="#000000",
width=40,
height=1,
anchor=W,
padx=1,
pady=1,
)
label_b10=Label(janela1,
text='DECIMAL:',
font='Arial 12 bold',
fg="#000000",
width=40,
height=1,
anchor=W,
padx=1,
pady=1,
)
label_art=Label(janela1,
bg="#80bfff",
text="Faculdade Estácio de Sá, Full Stack",
font='Arial 12 bold',
fg='#000000'
)
btn=Button(janela1,
text='Calcular',
bg="#80bfff",
fg="#000000",
font="Arial 16 bold italic",
width=30,
height=1,
bd=1,
relief='solid',
anchor=N,
command=lambda:apresentar(),
justify=CENTER
)
txb.focus()
label1.grid(row=0, column=0, sticky=W)
label2.grid(row=1, column=0, sticky=W)
label3.grid(row=2, column=0, sticky=W)
label_art.grid(row=3, column=0, sticky='we')
txb.grid(row=2, column=0, sticky=E)
label_b10.grid(row=4, column=0, sticky=W)
label_b.grid(row=5, column=0, sticky=W)
label_o.grid(row=6, column=0, sticky=W)
label_h.grid(row=7, column=0, sticky=W)
x.grid(row=8, column=0, sticky='we')
btn.grid(row=9, column=0, sticky='we')
def apresentar1():
label_b10['text'] = (f'Base Decimal: {base10}')
label_b['text'] = binario()
label_o['text'] = octal()
label_h['text'] = hexadecimal()
def apresentar():
global base10
try:
base10 = int(txb.get())
label_art['text'] = str("Faculdade Estácio de Sá, Full Stack")
label_art['fg']='#000000'
except ValueError:
label_art['text']=str('Opss. um Erro: ( Informe um Número Inteiro)')
label_art['fg']='#ff0000'
label_b10['text'] = 'BASE DECIMAL:'
label_b['text'] = 'BINÁRIO:'
label_o['text'] = 'OCTAL'
label_h['text'] = 'HEXADECIMAL'
else:
apresentar1()
janela1.mainloop()