-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCalculator.py
More file actions
22 lines (20 loc) · 869 Bytes
/
Calculator.py
File metadata and controls
22 lines (20 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
print("====================================================")
print(" Calculator ")
print("====================================================")
print(" Please select the number of the choice needed ")
print("____________________________________________________")
print(" ")
print(" 1. Basic Operations ")
print(" 2. Advanced Operations ")
print(" 3. Algebra Calculator ")
print(" 4. Calculus Calculator ")
print("____________________________________________________")
choice = int(input("Choice: "))
if choice == '1':
import BasicOperations
elif choice == '2':
import AdvancedOperations
elif choice == '3':
import AlgebraCalc
elif choice == '4':
import CalculusCalc