码迷,mamicode.com
首页 > 其他好文 > 详细

实验5

时间:2021-06-02 19:27:35      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:self   turn   __init__   技术   inf   code   ima   png   src   

 

class StudentDoc:
    def __init__ (self,number,name,major,score):
        self.number=number
        self.name=name
        self.major=major
        self.score=score

    def info(self):
        print(f{self.number},{self.name},{self.major},{self.score})

    def get_score(self):
        return self.score

    def change_score(self,change):
        self.score=change
from student import StudentDoc
s1=StudentDoc(110120119,霍哗,母猪的产后护理,0)
s2=StudentDoc(119120110,嘿嘿,火葬规划,1)

s1.info()
s2.info()

print(f分数:,s1.get_score())
print(f分数:,s2.get_score())

s1.change_score(100)
s2.change_score(100)
print(f分数:,s1.get_score())
print(f分数:,s2.get_score())

 

技术图片

技术图片

实验5

标签:self   turn   __init__   技术   inf   code   ima   png   src   

原文地址:https://www.cnblogs.com/lyh18/p/14833815.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!