zoukankan      html  css  js  c++  java
  • Pythonclassmethodstaticmethod

    class MySQL:
        def __init__(self,ip,port):
            self.ip=ip
            self.port=port
        @classmethod
        def from_conf(cls):
            import settings
            obj=cls(settings.ip,settings.port)
            return obj
    class Student:
        def __init__(self,name,name_id,age,sex,group):
            self.name = name
            self.name_id=name_id
            self.age = age
            self.sex = sex
            self.group=group
        def tell_info(self):
            print('''-------%s info
            NAME_ID:%s
            AGE:%s
            SEX:%s
            GROUP:%s
            '''%(self.name,self.name_id,self.age,self.sex,self.group))
        def save(self):
            with open(r'%s\%s'%(settings.student_path,self.name_id),'wb')as f:
                res=pickle.dumps(self)
                f.write(res)
        @staticmethod
        def get_all():
            res=os.listdir(settings.student_path) #os.listdir的结果是列表
            for i in res:
                with open(r'%s\%s'%(settings.student_path,i),'rb')as f:
                    result=pickle.load(f)
                    result.tell_info()
  • 相关阅读:
    RSA加密系统
    安装homebrew
    go helloworld
    下载文件checksum
    6月3日
    6月1日
    5月30日
    5月28日
    5月26日
    5月24日
  • 原文地址:https://www.cnblogs.com/c491873412/p/7127292.html
Copyright © 2011-2022 走看看