Python定义一个类student
时间: 2024-09-07 10:00:16 浏览: 52
Python类定义和类继承详解
在Python中,定义一个名为`Student`的类通常包含一些基本属性(如姓名、年龄、学号等)以及可能的方法(比如学习、休息等)。下面是一个简单的示例:
```python
class Student:
def __init__(self, name, age, student_id):
self.name = name
self.age = age
self.student_id = student_id
# 示例方法:代表学生的学习行为
def study(self, subject):
print(f"{self.name} is studying {subject}.")
# 示例方法:代表学生的休息行为
def rest(self):
print(f"{self.name} is resting.")
# 创建一个实例
samantha = Student("Samantha", 18, "001")
samantha.study("Math") # 调用学习方法
samantha.rest() # 调用休息方法
阅读全文