定义一个学生类,创建两个学生对象,实现二人对话
时间: 2024-03-15 10:46:55 浏览: 45
科技与人:元宇宙论坛跨界对话
好的,下面是一个简单的学生类定义和两个学生对象的对话实现:
```python
class Student:
def __init__(self, name):
self.name = name
def talk(self, other):
print(f"{self.name}: 你好,{other.name}!")
print(f"{other.name}: 你好,{self.name}!")
# 创建两个学生对象
s1 = Student("小明")
s2 = Student("小红")
# 二人对话
s1.talk(s2)
```
输出结果如下:
```
小明: 你好,小红!
小红: 你好,小明!
```
阅读全文