-
Notifications
You must be signed in to change notification settings - Fork 180
/
Copy patheulers_python.py
44 lines (31 loc) · 1.08 KB
/
eulers_python.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
#!/usr/bin/python
# -*- coding: utf-8 -*-
# By formula derived by Euler(A great mathematician)
print("Euler's Formula: F(faces) + V(vertices) = E(Edges)+2\n")
# Further derivation
print("Derivation 1: E(Edges) = F(faces)+V(vertices) - 2")
print("Derivation 2: V(vertices) = E(edges)+2 - F(Faces)")
print("Derivation 3: F(faces) = E(edges)+2 - V(vertices)")
# By order of operations, parenthesis can be added
# for ensuring, but not needed
def E(f, v):
return f+v - 2
def V(e, f):
return e+2 - f
def F(e, v):
return e+2 - v
# function to evaluate
# By default datatype of raw_input() is string
user = raw_input("\nE, V or F: ").upper()
print(" ")
# evaluating function asked by user
if user == "E":
print("\nEdges: " + str(E(input("Faces: "), input("Vertices: "))))
elif user == "V":
print("\nVertices: " + str(V(input("Edges: "), input("Faces: "))))
elif user == "F":
print("\nFaces: " + str(F(input("Edges: "), input("Vertices: "))))
else:
print("Invalid Input, Try again!")
# A while loop can be added
# to perform multiple calculations