forked from qiwsir/StarterLearningPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path20905p3.py
More file actions
28 lines (22 loc) · 588 Bytes
/
20905p3.py
File metadata and controls
28 lines (22 loc) · 588 Bytes
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
#!/usr/bin/env python
# coding=utf-8
class Person:
def __init__(self, name):
self.name = name
def height(self, m):
h = dict((["height", m],))
return h
def breast(self, n):
b = dict((["breast", n],))
return b
class Girl(Person):
def __init__(self,name):
super(Girl, self).__init__(name)
self.real_name = "Aoi sola"
def get_name(self):
return self.name
if __name__ == "__main__":
cang = Girl("canglaoshi")
print(cang.get_name())
print(cang.height(160))
print(cang.breast(90))