python类和对象练习题及答案
时间: 2023-07-30 17:07:00 浏览: 95
再为你提供一些 Python 类和对象练习题及答案:
6. 创建一个名为 `Dog` 的类,其中包含属性 `name` 和 `breed`,以及一个方法 `bark`,用于让该狗狗发出叫声。
```python
class Dog:
def __init__(self, name, breed):
self.name = name
self.breed = breed
def bark(self):
print("Woof!")
```
7. 创建一个名为 `Circle` 的类,其中包含属性 `radius`,表示该圆的半径,以及两个方法 `get_area` 和 `get_circumference`,分别返回该圆的面积和周长。
```python
class Circle:
def __init__(self, radius):
self.radius = radius
def get_area(self):
return 3.14 * self.radius ** 2
def get_circumference(self):
return 2 * 3.14 * self.radius
```
8. 创建一个名为 `Book` 的类,其中包含属性 `title` 和 `author`,以及一个方法 `get_info`,用于返回该书籍的信息(包括标题和作者)。
```python
class Book:
def __init__(self, title, author):
self.title = title
self.author = author
def get_info(self):
return f"{self.title} by {self.author}"
```
9. 创建一个名为 `Bank` 的类,其中包含属性 `accounts`,表示该银行的账户列表,以及两个方法 `add_account` 和 `remove_account`,分别用于添加和删除账户。
```python
class Bank:
def __init__(self):
self.accounts = []
def add_account(self, account):
self.accounts.append(account)
def remove_account(self, account):
self.accounts.remove(account)
```
10. 创建一个名为 `Rectangle` 的类,其中包含属性 `width` 和 `height`,以及一个方法 `is_square`,用于判断该矩形是否为正方形。
```python
class Rectangle:
def __init__(self, width, height):
self.width = width
self.height = height
def is_square(self):
return self.width == self.height
```
希望这些练习题对你有所帮助,加油!
阅读全文