-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphoneproject.py
94 lines (80 loc) · 2.24 KB
/
phoneproject.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
class Camera:
def cam(self):
print("Camera Available")
def frontcamera(self,x):
switcher = {
8: "It has 8MP front camera",
16: "It has 16MP front camera",
32: "It has 32MP front camera",
64: "It has 64MP front camera",
}
print (switcher.get(x))
def backcamera(self,x):
switcher = {
8: "It has 8MP back camera",
16: "It has 16MP back camera",
32: "It has 32MP back camera",
64: "It has 64MP back camera",
}
print (switcher.get(x))
class Bluetooth:
def blue(self):
print("Bluetooth Available")
class fingerprint:
def indisplay(self):
print("it has Indisplay fingerprint")
def backfinger(self):
print("it has back fingerprint")
class Samsung(Camera,fingerprint,Bluetooth):
def saph(self):
print("Samsung Feature")
print("_________________")
def get_value(self):
Camera.cam(self)
Camera.frontcamera(self,8)
Camera.backcamera(self,32)
fingerprint.indisplay(self)
class MI(Camera,fingerprint,Bluetooth):
def miph(self):
print("MI Feature")
print("____________")
def get_value(self):
Camera.cam(self)
Camera.frontcamera(self,16)
Camera.backcamera(self,16)
fingerprint.backfinger(self)
class OPPO(Camera,fingerprint,Bluetooth):
def opph(self):
print("OPPO Feature")
print("____________")
def get_value(self):
Camera.cam(self)
Camera.frontcamera(self,32)
Camera.backcamera(self,64)
fingerprint.backfinger(self)
class phone(Samsung,MI,OPPO):
def __init__(self):
print("A PROJECT BY ARAVIND MENON")
def get_phone(self,a):
if (a == 1):
Samsung.saph(self)
Samsung.get_value(self)
elif (a == 2):
MI.miph(self)
MI.get_value(self)
else:
OPPO.opph(self)
OPPO.get_value(self)
ph = phone()
print("SELECT YOUR PHONE")
print("1 for Samsung")
print("2 for MI")
print("3 for OPPO")
x = int(input("Enter number: "))
ph.get_phone(x)
'''
sam = samsung()
sam.get_value()
print(" ")
mi = MI()
mi.get_value()'''