0.定义一个学生类。有属性:姓名、年龄、成绩(语文,数学,英语)[每课成绩的类型为整数]方法: a. 获取学生的姓名:getname() b. 获取学生的年龄:getage()c. 返回3门科目中最高的分数。get_course()
程序:
class Student:
def __init__(self, name, age, *score):
self.name = name
self.age = age
self.languages_score, self.math_score, self.english_score = score
def get_name(self):
print('该学生姓名为:',self.name)
def get_age(self):
print('%s的年龄为:%d' % (self.name, self.age))
def get_course(self):
return max(self.languages_score, self.math_score, self.english_score)
s1 = Student('小王', 88, 57, 58, 99)
s1.get_name() # 该学生姓名为: 小王
s1.get_age() # 小王的年龄为:88
print('最高分数为:', s1.get_course()) # 最高分数为: 99
1.建立一个汽车类Auto,包括轮胎个数,汽车颜色,车身重量,速度等成员变量,并通过不同的构造方法创建实例。至少要求 汽车能够加速 减速 停车。 再定义一个小汽车类CarAuto 继承Auto 并添加空调、CD等成员变量 覆盖加速 减速的方法
class Auto:
def __init__(self, wheel_num, color, weight, speed):
self.wheel_num = wheel_num
self.color = color
self.weight = weight
self.speed = speed
def up_speed(self):
print('加速')
def down_speed(self):
print('减速')
def stop(self):
print('停车')
class CarAuto(Auto):
def __init__(self, wheel_num, color, weight, speed, air_conditioner, cd):
super(CarAuto, self).__init__(wheel_num, color, weight, speed)
self.air_conditioner = air_conditioner
self.cd = cd
def up_speed(self):
print('超级加速')
def down_speed(self):
print('缓慢减速')
def stop(self):
print('停车')
c1 = Auto(8, '黄色', '10t', '98km/h')
ca1 = CarAuto(4, '黑色', '4t', '198km/h', '格力', '热情的沙漠')
ca1.up_speed() # 超级加速
ca1.down_speed() # 缓慢减速
ca1.stop() # 停车
print(ca1.cd) # 热情的沙漠
2.创建一个名为User 的类,其中包含属性firstname 和lastname ,还有用户简介通常会存储的其他几个属性。在类User 中定义一个名 为describeuser() 的方法,它打印用户信息摘要;再定义一个名为greetuser() 的方法,它向用户发出个性化的问候。
管理员是一种特殊的用户。编写一个名为Admin 的类,让它继承User类。添加一个名为privileges 的属性,用于存储一个由字符串(如"can add post"、"can delete post"、"can ban user"等)组成的列表。编写一个名为show_privileges()的方法,它显示管理员的权限。创建一个Admin 实例,并调用这个方法。
程序:
class User:
def __init__(self, last_name, first_name='first'):
self.first_name = first_name
self.last_name = last_name
def describe_user(self):
print(self.__dict__)
def greet_user(self):
print('欢迎%s登录本系统。' % self.last_name)
class Admin(User):
def __init__(self, last_name, privileges=None):
super().__init__(last_name)
if privileges is None:
privileges = ['can add post', 'can delete \
post', 'can ban user']
self.privileges = privileges
def show_privileges(self):
for item in self.privileges:
print(self.last_name + 'you', item)
a1 = Admin('老王')
a1.greet_user()
# a1.describe_user()
a1.show_privileges()
结果:
运行结果
3.创建一个Person类,添加一个类字段用来统计Perosn类的对象的个数
程序:
class Person:
object_counts = 0
def __init__(self):
self.name = '老王'
Person.object_counts += 1
@classmethod
def objects(cls):
print('创建了%s类的%d个对象' % (cls.__name__, cls.object_counts))
p1 = Person()
p1 = Person()
p1 = Person()
p1 = Person()
Person.objects()
结果:
运行结果
(尝试)5.写一个类,其功能是:1.解析指定的歌词文件的内容 2.按时间显示歌词 提示:歌词文件的内容一般是按下面的格式进行存储的。歌词前面对应的是时间,在对应的时间点可以显示对应的歌词
[00:00.20]蓝莲花
[00:00.80]没有什么能够阻挡
[00:06.53]你对自由地向往
[00:11.59]天马行空的生涯
[00:16.53]你的心了无牵挂
[02:11.27][00:21.95]穿过幽暗地岁月
[02:16.51][00:26.83]也曾感到彷徨
[02:21.81][00:32.30]当你低头地瞬间
[02:26.79][00:37.16]才发觉脚下的路
[02:32.17]心中那自由地世界
[02:37.20]如此的清澈高远
[02:42.32]盛开着永不凋零
[02:47.83]蓝莲花
100s -
程序:
class Music:
def __init__(self, files: str):
self.files = files
def __get_list(self):
with open(self.files, 'r', encoding='utf-8') as f:
list1 = f.readlines()
list5 = []
for index in range(len(list1)):
list4 = []
list2 = list1[index].split(']')
for index1 in range(len(list2)):
list3 = list2[index1].split('[')
list4.append(list3[-1])
list5.append(list4)
list8 = []
for index in range(len(list5)):
index1 = 0
list7 = []
while index1 < len(list5[index]):
if ':' in list5[index][index1]:
list6 = list5[index][index1].split(':')
time = float(list6[0])*60 + float(list6[1])
list7.append(time)
# print(list6[0], list6[1])
index1 += 1
else:
list7.append(list5[index][index1])
index1 += 1
list8.append(list7)
return list8
def get_words(self, second):
list10 = []
list9 = self.__get_list()
for index in range(len(list9)):
for index1 in range(len(list9[index])-1):
list10.append(list9[index][index1])
list10.sort()
for index in range(len(list10)):
if second <= list10[index]:
for index1 in range(len(list9)):
# if list10[index-1] in list9[index1]:
if list10[index] in list9[index1]:
print(list9[index1][-1])
break
else:
print('超出歌曲总时长!')
blue_lotus = Music('files/blue_lotus.txt')
blue_lotus.get_words(0.2) # 蓝莲花
blue_lotus.get_words(5) # 你对自由地向往
blue_lotus.get_words(10) # 天马行空的生涯
blue_lotus.get_words(30) # 当你低头地瞬间
blue_lotus.get_words(80) # 穿过幽暗地岁月
blue_lotus.get_words(100) # 穿过幽暗地岁月
blue_lotus.get_words(164) # 蓝莲花
blue_lotus.get_words(168) # 超出歌曲总时长!
网友评论