-
Notifications
You must be signed in to change notification settings - Fork 0
/
Majestic_Calculator.py
467 lines (366 loc) · 18 KB
/
Majestic_Calculator.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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
import os,time,math;from math import*
text_features=(
'cls', # index 0 = clear screen
'\x1b[31m', # index 1 = red
'\x1b[32m', # index 2 = green
'\x1b[33m', # index 3 = yellow
'\x1b[34m', # index 4 = blue
'\x1b[37m', # index 5 = white
)
text_words=(
f'\n {text_features[3]}Majestic Calculator\n\n {text_features[5]}Press (1) for Standard \
Decimal Base 10 Calculator\n Press (2) for Binary Base 2 Calculator\n Press (3) for Octal \
Base 8 Calculator\n Press (4) for Hexadecimal Base 16 Calculator\n\n {text_features[3]}(BIN) \
(OCT) (HEX) Number Translator\n\n {text_features[5]}Press (5) for Binary Base 2 Number \
Translator\n Press (6) for Octal Base 8 Number Translator\n Press (7) for Hexadecimal Base \
16 Number Translator\n\n Press (Q) to quit\n\n{text_features[1]}READY:{text_features[5]} ', # index 0 = text_words
f'\n {text_features[3]}Majestic Calculator\n\n Standard Decimal Base 10 Calculator', # index 1 = text_words
f'\n {text_features[3]}Majestic Calculator\n\n Binary Base 2 Calculator', # index 2 = text_words
f'\n {text_features[3]}Majestic Calculator\n\n Octal Base 8 Calculator', # index 3 = text_words
f'\n {text_features[3]}Majestic Calculator\n\n Hexadecimal Base 16 Calculator', # index 4 = text_words
f'\n {text_features[3]}Majestic Calculator\n\n Binary Base 2 Number Translator', # index 5 = text_words
f'\n {text_features[3]}Majestic Calculator\n\n Octal Base 8 Number Translator', # index 6 = text_words
f'\n {text_features[3]}Majestic Calculator\n\n Hexadecimal Base 16 Number Translator', # index 7 = text_words
f'\n {text_features[3]}Majestic Calculator\n\n Binary Base 2 Translator', # index 8 = text_words
f'\n {text_features[3]}Majestic Calculator\n\n Octal Base 8 Translator', # index 9 = text_words
f'\n {text_features[3]}Majestic Calculator\n\n Hexadecimal Base 16 Translator', # index 10 = text_words
f'\n\n {text_features[5]}Please enter a decimal base 10 number:{text_features[2]} ', # index 11 = text_words
f'\n\n {text_features[5]}Enter First Number:{text_features[2]} ', # index 12 = text_words
f'\n\n {text_features[5]}Enter (+) (-) (*) (/) Operator:{text_features[2]} ', # index 13 = text_words
f'\n\n {text_features[5]}Enter Second Number:{text_features[2]} ', # index 14 = text_words
f'\n {text_features[3]}Majestic Calculator\n\n{text_features[1]}Invalid operator!', # index 15 = text_words
f'\n\n {text_features[1]}ERROR! {text_features[3]}Cannot divide by zero.', # index 16 = text_words
f'\n\n {text_features[1]}ERROR!', # index 17 = text_words
f'\n {text_features[5]}Do you wish to continue? Press (Enter) or press (Q) to quit: ', # index 18 = text_words
f'\n {text_features[3]}Thanks for choosing Majestic Calculator...' # index 19 = text_words
)
operator=(
chr(43),chr(45),chr(42),chr(47) # math operators in ASCII codes
)
button=('1','2','3','4','5','6','7','q') # button choices, q = quit
def stan_cal():
while True:
try:
os.system(text_features[0])
num1=int(input(f' {text_words[1]}{text_words[12]}').lower().strip())
os.system(text_features[0])
oper=input(f' {text_words[1]}\n\n {text_features[2]}{num1}{text_words[13]}').lower().strip()
if oper==operator[0]:
os.system(text_features[0])
num2=int(input(f' {text_words[1]}\n\n {text_features[2]}{num1} \
{operator[0]}{text_words[14]}').lower().strip())
os.system(text_features[0])
but=input(f' {text_words[1]}\n\n {text_features[2]}{num1} \
{operator[0]} {num2} = {text_features[5]}" {int(num1+num2)} "\n {text_words[18]}').lower().strip()
if but==('\r'):
continue
elif but==button[7]:
break
elif oper==operator[1]:
os.system(text_features[0])
num2=int(input(f' {text_words[1]}\n\n {text_features[2]}{num1} \
{operator[1]}{text_words[14]}').lower().strip())
os.system(text_features[0])
but=input(f' {text_words[1]}\n\n {text_features[2]}{num1} \
{operator[1]} {num2} = {text_features[5]}" {int(num1-num2)} "\n {text_words[18]}').lower().strip()
if but==('\r'):
continue
elif but==button[7]:
break
elif oper==operator[2]:
os.system(text_features[0])
num2=int(input(f' {text_words[1]}\n\n {text_features[2]}{num1} \
{operator[2]}{text_words[14]}').lower().strip())
os.system(text_features[0])
but=input(f' {text_words[1]}\n\n {text_features[2]}{num1} \
{operator[2]} {num2} = {text_features[5]}" {int(num1*num2)} "\n {text_words[18]}').lower().strip()
if but==('\r'):
continue
elif but==button[7]:
break
elif oper==operator[3]:
os.system(text_features[0])
num2=int(input(f' {text_words[1]}\n\n {text_features[2]}{num1} \
{operator[3]}{text_words[14]}').lower().strip())
os.system(text_features[0])
but=input(f' {text_words[1]}\n\n {text_features[2]}{num1} \
{operator[3]} {num2} = {text_features[5]}" {int(num1/num2)} "\n {text_words[18]}').lower().strip()
if but==('\r'):
continue
elif but==button[7]:
break
except ZeroDivisionError:
os.system(text_features[0])
print(f' {text_words[1]}{text_words[16]}')
time.sleep(2)
except ValueError:
os.system(text_features[0])
print(f' {text_words[1]}{text_words[17]}')
time.sleep(2)
def bin_cal():
while True:
try:
os.system(text_features[0])
num1=int(input(f' {text_words[2]}{text_words[12]}').lower().strip())
os.system(text_features[0])
oper=input(f' {text_words[2]}\n\n {text_features[2]}{bin(num1)}{text_words[13]}').lower().strip()
if oper==operator[0]:
os.system(text_features[0])
num2=int(input(f' {text_words[2]}\n\n {text_features[2]}{bin(num1)} \
{operator[0]}{text_words[14]}').lower().strip())
os.system(text_features[0])
but=input(f' {text_words[2]}\n\n {text_features[2]}{bin(num1)} \
{operator[0]} {bin(num2)} = {text_features[5]}" {bin(num1+num2)} " \
{text_features[2]}= {text_features[5]}" {int(num1+num2)} " \n {text_words[18]}').lower().strip()
if but==('\r'):
continue
elif but==button[7]:
break
elif oper==operator[1]:
os.system(text_features[0])
num2=int(input(f' {text_words[2]}\n\n {text_features[2]}{bin(num1)} \
{operator[1]}{text_words[14]}').lower().strip())
os.system(text_features[0])
but=input(f' {text_words[2]}\n\n {text_features[2]}{bin(num1)} \
{operator[1]} {bin(num2)} = {text_features[5]}" {bin(num1-num2)} " \
{text_features[2]}= {text_features[5]}" {int(num1-num2)} " \n {text_words[18]}').lower().strip()
if but==('\r'):
continue
elif but==button[7]:
break
elif oper==operator[2]:
os.system(text_features[0])
num2=int(input(f' {text_words[2]}\n\n {text_features[2]}{bin(num1)} \
{operator[2]}{text_words[14]}').lower().strip())
os.system(text_features[0])
but=input(f' {text_words[2]}\n\n {text_features[2]}{bin(num1)} \
{operator[2]} {bin(num2)} = {text_features[5]}" {bin(num1*num2)} " \
{text_features[2]}= {text_features[5]}" {int(num1*num2)} " \n {text_words[18]}').lower().strip()
if but==('\r'):
continue
elif but==button[7]:
break
elif oper==operator[3]:
os.system(text_features[0])
num2=int(input(f' {text_words[2]}\n\n {text_features[2]}{bin(num1)} \
{operator[3]}{text_words[14]}').lower().strip())
os.system(text_features[0])
but=input(f'{text_words[2]}\n\n {text_features[2]}{bin(num1)} \
{operator[3]} {bin(num2)} = {text_features[5]}" {bin(int(num1/num2))} " \
{text_features[2]}= {text_features[5]}" {int(num1/num2)} " \n {text_words[18]}').lower().strip()
if but==('\r'):
continue
elif but==button[7]:
break
except ZeroDivisionError:
os.system(text_features[0])
print(f' {text_words[2]}{text_words[16]}')
time.sleep(2)
except ValueError:
os.system(text_features[0])
print(f' {text_words[1]}{text_words[17]}')
time.sleep(2)
def oct_cal():
while True:
try:
os.system(text_features[0])
num1=int(input(f' {text_words[3]}{text_words[12]}').lower().strip())
os.system(text_features[0])
oper=input(f' {text_words[3]}\n\n {text_features[2]}{oct(num1)}{text_words[13]}').lower().strip()
if oper==operator[0]:
os.system(text_features[0])
num2=int(input(f' {text_words[3]}\n\n {text_features[2]}{oct(num1)} \
{operator[0]}{text_words[14]}').lower().strip())
os.system(text_features[0])
but=input(f' {text_words[3]}\n\n {text_features[2]}{oct(num1)} \
{operator[0]} {oct(num2)} = {text_features[5]}" {oct(num1+num2)} " \
{text_features[2]}= {text_features[5]}" {int(num1+num2)} " \n {text_words[18]}').lower().strip()
if but==('\r'):
continue
elif but==button[7]:
break
elif oper==operator[1]:
os.system(text_features[0])
num2=int(input(f' {text_words[3]}\n\n {text_features[2]}{oct(num1)} \
{operator[1]}{text_words[14]}').lower().strip())
os.system(text_features[0])
but=input(f' {text_words[3]}\n\n {text_features[2]}{oct(num1)} \
{operator[1]} {oct(num2)} = {text_features[5]}" {oct(num1-num2)} " \
{text_features[2]}= {text_features[5]}" {int(num1-num2)} " \n {text_words[18]}').lower().strip()
if but==('\r'):
continue
elif but==button[7]:
break
elif oper==operator[2]:
os.system(text_features[0])
num2=int(input(f' {text_words[3]}\n\n {text_features[2]}{oct(num1)} \
{operator[2]}{text_words[14]}').lower().strip())
os.system(text_features[0])
but=input(f' {text_words[3]}\n\n {text_features[2]}{oct(num1)} \
{operator[2]} {oct(num2)} = {text_features[5]}" {oct(num1*num2)} " \
{text_features[2]}= {text_features[5]}" {int(num1*num2)} " \n {text_words[18]}').lower().strip()
if but==('\r'):
continue
elif but==button[7]:
break
elif oper==operator[3]:
os.system(text_features[0])
num2=int(input(f' {text_words[3]}\n\n {text_features[2]}{oct(num1)} \
{operator[3]}{text_words[14]}').lower().strip())
os.system(text_features[0])
but=input(f'{text_words[3]}\n\n {text_features[2]}{oct(num1)} \
{operator[3]} {oct(num2)} = {text_features[5]}" {oct(int(num1/num2))} " \
{text_features[2]}= {text_features[5]}" {int(num1/num2)} " \n {text_words[18]}').lower().strip()
if but==('\r'):
continue
elif but==button[7]:
break
except ZeroDivisionError:
os.system(text_features[0])
print(f' {text_words[3]}{text_words[16]}')
time.sleep(2)
except ValueError:
os.system(text_features[0])
print(f' {text_words[3]}{text_words[17]}')
time.sleep(2)
def hex_cal():
while True:
try:
os.system(text_features[0])
num1=int(input(f' {text_words[4]}{text_words[12]}').lower().strip())
os.system(text_features[0])
oper=input(f' {text_words[4]}\n\n {text_features[2]}{hex(num1)}{text_words[13]}').lower().strip()
if oper==operator[0]:
os.system(text_features[0])
num2=int(input(f' {text_words[4]}\n\n {text_features[2]}{hex(num1)} \
{operator[0]}{text_words[14]}').lower().strip())
os.system(text_features[0])
but=input(f' {text_words[4]}\n\n {text_features[2]}{hex(num1)} \
{operator[0]} {hex(num2)} = {text_features[5]}" {hex(num1+num2)} " \
{text_features[2]}= {text_features[5]}" {int(num1+num2)} " \n {text_words[18]}').lower().strip()
if but==('\r'):
continue
elif but==button[7]:
break
elif oper==operator[1]:
os.system(text_features[0])
num2=int(input(f' {text_words[4]}\n\n {text_features[2]}{hex(num1)} \
{operator[1]}{text_words[14]}').lower().strip())
os.system(text_features[0])
but=input(f' {text_words[4]}\n\n {text_features[2]}{hex(num1)} \
{operator[1]} {hex(num2)} = {text_features[5]}" {hex(num1-num2)} " \
{text_features[2]}= {text_features[5]}" {int(num1-num2)} " \n {text_words[18]}').lower().strip()
if but==('\r'):
continue
elif but==button[7]:
break
elif oper==operator[2]:
os.system(text_features[0])
num2=int(input(f' {text_words[4]}\n\n {text_features[2]}{hex(num1)} \
{operator[2]}{text_words[14]}').lower().strip())
os.system(text_features[0])
but=input(f'{text_words[4]}\n\n {text_features[2]}{hex(num1)} \
{operator[2]} {hex(num2)} = {text_features[5]}" {hex(num1*num2)} " \
{text_features[2]}= {text_features[5]}" {int(num1*num2)} " \n {text_words[18]}').lower().strip()
if but==('\r'):
continue
elif but==button[7]:
break
elif oper==operator[3]:
os.system(text_features[0])
num2=int(input(f' {text_words[4]}\n\n {text_features[2]}{hex(num1)} \
{operator[3]}{text_words[14]}').lower().strip())
os.system(text_features[0])
but=input(f' {text_words[4]}\n\n {text_features[2]}{hex(num1)} \
{operator[3]} {hex(num2)} = {text_features[5]}" {hex(int(num1/num2))} " \
{text_features[2]}= {text_features[5]}" {int(num1/num2)} " \n {text_words[18]}').lower().strip()
if but==('\r'):
continue
elif but==button[7]:
break
except ZeroDivisionError:
os.system(text_features[0])
print(f' {text_words[4]}{text_words[16]}')
time.sleep(2)
except ValueError:
os.system(text_features[0])
print(f' {text_words[4]}{text_words[17]}')
time.sleep(2)
def bin_trans():
while True:
try:
os.system(text_features[0])
num_trans=int(input(f' {text_words[8]}{text_words[11]}').lower().strip())
os.system(text_features[0])
but=input(f'{ text_words[8]}\n\n {text_features[2]}{num_trans} = {text_features[5]}\
" {bin(num_trans)} "\n {text_words[18]}').lower().strip()
if but==('\r'):
continue
elif but==button[7]:
break
except ValueError:
os.system(text_features[0])
print(f' {text_words[8]}{text_words[17]}')
time.sleep(2)
def oct_trans():
while True:
try:
os.system(text_features[0])
num_trans=int(input(f' {text_words[9]}{text_words[11]}').lower().strip())
os.system(text_features[0])
but=input(f' {text_words[9]}\n\n {text_features[2]}{num_trans} = {text_features[5]}\
" {oct(num_trans)} "\n {text_words[18]}').lower().strip()
if but==('\r'):
continue
elif but==button[7]:
break
except ValueError:
os.system(text_features[0])
print(f' {text_words[9]}{text_words[17]}')
time.sleep(2)
def hex_trans():
while True:
try:
os.system(text_features[0])
num_trans=int(input(f' {text_words[10]}{text_words[11]}').lower().strip())
os.system(text_features[0])
but=input(f' {text_words[10]}\n\n {text_features[2]}{num_trans} = {text_features[5]}\
" {hex(num_trans)} "\n {text_words[18]}').lower().strip()
if but==('\r'):
continue
elif but==button[7]:
break
except ValueError:
os.system(text_features[0])
print(f'{text_words[10]}{text_words[17]}')
time.sleep(2)
def maj_cal():
while True:
os.system(text_features[0])
choice=input(text_words[0]).lower().strip()
if choice==button[0]:
stan_cal()
pass
elif choice==button[1]:
bin_cal()
pass
elif choice==button[2]:
oct_cal()
pass
elif choice==button[3]:
hex_cal()
pass
elif choice==button[4]:
bin_trans()
pass
elif choice==button[5]:
oct_trans()
pass
elif choice==button[6]:
hex_trans()
pass
elif choice==button[7]:
os.system(text_features[0])
print(text_words[19])
time.sleep(3)
break