forked from qiwsir/StarterLearningPython
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path20905.py
More file actions
30 lines (24 loc) · 656 Bytes
/
20905.py
File metadata and controls
30 lines (24 loc) · 656 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
29
30
#!/usr/bin/env python
# coding=utf-8
class Person(object):
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):
#Person.__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.real_name
print cang.get_name()
print cang.height(160)
print cang.breast(90)