编写python代码,定义一个类human,类中的有三个属性:name、age、address。定义方法
时间: 2023-11-27 21:51:22 浏览: 94
python 定义一个 people 类 示例
可以参考下面的代码:
```
class Human:
def __init__(self, name, age, address):
self.name = name
self.age = age
self.address = address
def introduce(self):
print("My name is", self.name)
print("I am", self.age, "years old")
print("I live in", self.address)
```
这个类包含三个属性:name、age、address,以及一个方法introduce(),用于介绍自己的信息。在初始化方法__init__()中,我们将name、age、address三个参数赋值给相应的属性。在introduce()方法中,我们打印出自己的姓名、年龄和地址。你可以像下面这样创建一个对象并调用它的introduce()方法:
```
person = Human("Alice", 25, "New York")
person.introduce()
```
这将输出:
```
My name is Alice
I am 25 years old
I live in New York
```
阅读全文