Birthday(生日类)含有:year,month,day等成员变量Teacher(教师类)含有:num,name,sex等成员变量Professor(教授类)含有:教师类和生日类的成员变量以及research(研究方向)要求:以Teacher为基类派生Professor类,在Professor类中包含一个Birthday类对象定义Professor类对象prof,并给出所有数据的初值输出prof的全部数据)
时间: 2024-01-22 12:21:02 浏览: 87
以下是符合要求的代码实现:
```python
class Birthday:
def __init__(self, year, month, day):
self.year = year
self.month = month
self.day = day
class Teacher:
def __init__(self, num, name, sex):
self.num = num
self.name = name
self.sex = sex
class Professor(Teacher):
def __init__(self, num, name, sex, year, month, day, research):
super().__init__(num, name, sex)
self.birthday = Birthday(year, month, day)
self.research = research
prof = Professor(123456, "张三", "男", 1980, 5, 20, "人工智能")
print("教师编号:", prof.num)
print("教师姓名:", prof.name)
print("教师性别:", prof.sex)
print("出生年份:", prof.birthday.year)
print("出生月份:", prof.birthday.month)
print("出生日期:", prof.birthday.day)
print("研究方向:", prof.research)
```
输出结果为:
```
教师编号: 123456
教师姓名: 张三
教师性别: 男
出生年份: 1980
出生月份: 5
出生日期: 20
研究方向: 人工智能
```
阅读全文
相关推荐
![java](https://img-home.csdnimg.cn/images/20250102104920.png)
![rar](https://img-home.csdnimg.cn/images/20241231044955.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![](https://csdnimg.cn/download_wenku/file_type_ask_c1.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![zip](https://img-home.csdnimg.cn/images/20241231045053.png)
![-](https://img-home.csdnimg.cn/images/20241231045053.png)
![](https://csdnimg.cn/download_wenku/file_type_ask_c1.png)
![](https://csdnimg.cn/download_wenku/file_type_ask_c1.png)
![](https://csdnimg.cn/download_wenku/file_type_ask_c1.png)
![rar](https://img-home.csdnimg.cn/images/20241231044955.png)