用python写一个类
时间: 2024-03-29 11:12:33 浏览: 48
python中如何写类
以下是一个简单的Python类示例:
```python
class Person:
def __init__(self, name, age):
self.name = name
self.age = age
def say_hello(self):
print(f"Hello, my name is {self.name} and I am {self.age} years old.")
person1 = Person("Alice", 25)
person1.say_hello() # 输出:Hello, my name is Alice and I am 25 years old.
```
这个类名为`Person`,它有两个属性:`name`和`age`,它们在`__init__`方法中被初始化。类还有一个方法`say_hello`,它使用类的属性输出问候语。我们创建一个`Person`对象并调用`say_hello`方法来测试类的功能。
阅读全文