2018-09-08

作业
0.定义一个学生类。有属性:姓名、年龄、成绩(语文,数学,英语)[每课成绩的类型为整数]
方法: a. 获取学生的姓名:getname() b. 获取学生的年龄:getage()
c. 返回3门科目中最高的分数。get_course()

class Student:
    def __init__(self,name,age,score=[]):
        self.name=name
        self.age=age
        self.score=score

    def getname(self):
        return self.name

    def getage(self):
        return self.age

    def get_course(self):


        return max(self.score)

stu1=Student('fanzl','21',[89,54,78])


print(stu1.name)
print(stu1.score)
print(stu1.get_course())

1.建立一个汽车类Auto,包括轮胎个数,汽车颜色,车身重量,速度等成员变量,并通过不同的构造方法创建实例。
至少要求 汽车能够加速 减速 停车。
再定义一个小汽车类CarAuto 继承Auto 并添加空调、CD等成员变量 覆盖加速 减速的方法

class Auto:
    def __init__(self,tires,color, weight,speed):
        self.tires=tires
        self.color=color
        self.weight=weight
        self.speed=speed

    @classmethod
    def speed_up(cls):
        print('加速')

    @classmethod
    def speed_down(cls):
        print('减速')

    @classmethod
    def park(cls):
        print('停车')

class  CarAuto(Auto):
    '''小汽车类'''
    def __init__(self,air_conditioner,CD):
        self.air_conditioner=air_conditioner
        self.CD=CD

    @classmethod
    def speed_up(cls):
        pass

    @classmethod
    def speed_down(cls):
        pass

# car1=CarAuto()
CarAuto.speed_down()
CarAuto.speed_up()

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):
        self.firstname='振霖'
        self.lastname='樊'
        self.age=21
        self.sex='男'

    def describeuser(self):
        print(self.__dict__)
        return self.__dict__

    def greetuser(self):
        print('hello %s %s'%(self.lastname,self.firstname))


class Admin(User):
    def __init__(self,privileges=[]):
        super().__init__()
        self.privileges=privileges

    def show_privileges(self):
        for x in self.privileges[:]:
            print(x)

admin=Admin(["can add post","can delete post","can ban user"])
print(admin.__dict__)
admin.show_privileges()

3.创建一个Person类,添加一个类字段用来统计Perosn类的对象的个数

class Person:

    number=0
    def __init__(self):
        Person.number+=1

(尝试)5.写一个类,其功能是:1.解析指定的歌词文件的内容 2.按时间显示歌词提示:
歌词文件的内容一般是按下面的格式进行存储的。歌词前面对应的是时间,在对应的时间点可以显示对应的歌词
[00:00.20]蓝莲花
[00:00.80]没有什么能够阻挡
[00:06.53]你对自由地向往
[00:11.59]天马行空的生涯
[00:16.53]你的心了无牵挂
[02:11.27][01:50.22][00:21.95]穿过幽暗地岁月
[02:16.51][01:55.46][00:26.83]也曾感到彷徨
[02:21.81][02:00.60][00:32.30]当你低头地瞬间
[02:26.79][02:05.72][00:37.16]才发觉脚下的路
[02:32.17][00:42.69]心中那自由地世界
[02:37.20][00:47.58]如此的清澈高远
[02:42.32][00:52.72]盛开着永不凋零
[02:47.83][00:57.47]蓝莲花

import time
class Lyrics:
    def __init__(self,name='歌词.txt'):
        self.name=name

    def show_all_lyrics(self):
        f = open('./files/' + self.name, 'r', encoding='utf-8')
        while True:
            index=0

            content = f.readline()

            while True:

                if len(content)==0:

                    break
                if content[index]=='[':
                    index+=10
                    continue
                else:
                    print(content[index:])
                    break
            if content=='':
                break


    

    def show_lyrics(self):

        min = 0
        sec = 0
        ms = 0
        while True:
            f = open('./files/' + self.name, 'r', encoding='utf-8')

            ti ='['+ str(min).rjust(2,'0')+':'+str(sec).rjust(2,'0')+'.'+str(ms).rjust(2,'0')+']'
            time.sleep(0.01)
            ms+=1
            if ms==100:
                sec+=1
                ms=0
            if sec==60:
                min+=1
                sec=0


            while True:

                content = f.readline()

                index = 0
                if len(content) == 0:
                    break

                while True:

                    if ti==content[index:index+10]:
                        while True:
                            if content[index] == '[':
                                index += 10
                                continue
                            else:
                                print(ti)
                                print(content[index:])
                                break
                    if content[index] == '[':
                        index+=10
                    else:
                        break
lyrics1=Lyrics('歌词.txt')
lyrics1.show_all_lyrics()
lyrics1.show_lyrics()

你可能感兴趣的:(2018-09-08)