热门

最新

红包

立Flag

投票

同城

我的

发布
weixin_57788469
卷死个人
5 年前
trueweixin_57788469

MVC

CSDN App 扫码分享
分享
评论
3
打赏
  • 复制链接
  • 举报
下一条:
面向对象# 1.定义学生类class Student: def __init__(self, name, score): self.name = name self.score = score def print_score(self): print('姓名:%s,分数:%d' % (self.name, self.score))# 2.实例化学生类student1 = Student('贝贝', 98)student2 = Student('闻闻', 93)# 3.调用实例的方法student1.print_score()student2.print_score()
立即登录