forked from qiwsir/StarterLearningPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout_self.py
More file actions
23 lines (16 loc) · 430 Bytes
/
about_self.py
File metadata and controls
23 lines (16 loc) · 430 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding:utf-8
class Person:
def __init__(self, name):
self.name = name
def get_name(self):
return self.name
def breast(self, n):
self.breast = n
def color(self, color):
print("{0} is {1}".format(self.name, color))
def how(self):
print("{0} breast is {1}".format(self.name, self.breast))
girl = Person('canglaoshi')
girl.breast(90)
girl.color("white")
girl.how()