博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python--class test
阅读量:5975 次
发布时间:2019-06-20

本文共 496 字,大约阅读时间需要 1 分钟。

# !usr/bin/env  python3

#-*- coding:utf-8 -*-
'a test class'
class Student(object):
    def __init__(self,name,score):
        self.name=name
        self.score=score
    def print_score(self):
        print('information:%s  %s' %(self.name ,self.score))
    def compare_score(self):
        if self.score>90:
            print('优秀')
        elif self.score>80:
            print('良好')
        else:
            print('还需要加油')
lucy=Student('Lucy',99)   
print('name :%s  score:%s' %(lucy.name,lucy.score) )
lucy.print_score()
lucy.compare_score()

转载于:https://www.cnblogs.com/serena45/p/5707732.html

你可能感兴趣的文章
android或ios app请求参数格式
查看>>
Camera Vision - video surveillance on C#
查看>>
如何理解网络连接中的"3次握手"?
查看>>
使用Dubbo服务出现java.io.IOException: invalid constant type: 18异常解决办法
查看>>
PYKit目录
查看>>
JSON使用总结
查看>>
php-redis中文帮助手册_系统相关_config_eval_evalSha_script...
查看>>
Tomcat Context配置
查看>>
CentOS6.5安装ntopng
查看>>
mysql事务rollback&commit
查看>>
Node.js搭建Web服务器
查看>>
实现Instagram的Material Design概念设计
查看>>
php5.3安装oracle的扩展oci8与pdo_oci
查看>>
发送超长短信的协议格式
查看>>
CentOS 6.x 快速安装L2TP ***
查看>>
mysql主主复制(双主复制)配置步骤
查看>>
一篇文章能够看懂基础源代码之JAVA篇
查看>>
什么是大数据技术架构
查看>>
【分享】如何救援記憶卡中誤刪的資料
查看>>
北方计算机专修学院“展示自我 秀出风采” 网页创意设计大赛成功举办
查看>>