python的类初始化

简介: class book:    _author=''    _name=''    _page=0    price=0    _press=''    def _check(self,item):        if item=='':            return 0        else...

class book:
    _author=''
    _name=''
    _page=0
    price=0
    _press=''
    def _check(self,item):
        if item=='':
            return 0
        else:
            return 1

    def show(self):
        if self._check(self._author):
            print(self._author)
        else:
            print('No value')
        if self._check(self._name):
            print(self._name)
        else:
            print('No value')

    def setname(self,name):
        self._name=name
    def __init__(self,author,name):
        self._author=author
        self._name=name
       
a=book('Tom','A Wonderful Book')
a.show()

相关文章
|
3月前
|
索引 Python
python-类属性操作
【10月更文挑战第11天】 python类属性操作列举
32 1
|
3月前
|
Java C++ Python
Python基础---类
【10月更文挑战第10天】Python类的定义
30 2
|
3月前
|
设计模式 开发者 Python
Python类里引用其他类
Python类里引用其他类
34 4
|
3月前
|
设计模式 开发者 Python
Python 类中引用其他类的实现详解
Python 类中引用其他类的实现详解
67 1
|
3月前
|
JSON 缓存 API
在 Python 中使用公共类处理接口请求的响应结果
在 Python 中使用公共类处理接口请求的响应结果
41 1
|
3月前
|
Python
深入解析 Python 中的对象创建与初始化:__new__ 与 __init__ 方法
深入解析 Python 中的对象创建与初始化:__new__ 与 __init__ 方法
28 1
|
3月前
|
机器人 关系型数据库 Python
【Python篇】Python 类和对象:详细讲解(下篇)
【Python篇】Pyt hon 类和对象:详细讲解(下篇)
37 2
|
3月前
|
算法 Python
【Python篇】Python 类和对象:详细讲解(中篇)
【Python篇】Python 类和对象:详细讲解(中篇)
46 2
|
3月前
|
存储 C++ Python
【Python篇】Python 类和对象:详细讲解(上篇)
【Python篇】Python 类和对象:详细讲解(上篇)
59 2
|
4月前
|
前端开发 Python
Python编程的面向对象有哪些(二)
Python编程的面向对象(二)—类的多态
30 7