forked from qiwsir/StarterLearningPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrectangle1.py
More file actions
26 lines (23 loc) · 490 Bytes
/
rectangle1.py
File metadata and controls
26 lines (23 loc) · 490 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
# coding:utf-8
'''
filename: rectangle1.py
'''
class Rectangle:
"""
the width and length of Rectangle
"""
def __init__(self):
self.width = 0
self.length = 0
def setSize(self, size):
self.width, self.length = size
def getSize(self):
return self.width, self.length
if __name__ == "__main__":
r = Rectangle()
r.width = 3
r.length = 4
print(r.getSize())
r.setSize( (30, 40) )
print(r.width)
print(r.length)