当前位置 : 主页 > 编程语言 > python >

day08_python中的属性(01)

来源:互联网 收集:自由互联 发布时间:2022-08-10
#__author__ = 'DouYunQian' #coding = utf - 8 class Page (): def __init__ ( self , all_count ): self . all_count = all_count @ property #这是特性,这是Python中的特性 def all_pager ( self ): a1 , a2 = divmod ( self . all_count , 11
#__author__ = 'DouYunQian'

#coding=utf-8

class Page():

def __init__(self,all_count):

self.all_count=all_count

@property#这是特性,这是Python中的特性

def all_pager(self):

a1,a2=divmod(self.all_count, 11)

if a2==0:

return a1

else:

return a2

p=Page(101)

result=p.all_pager#就在也不用加括号了这就是Python中property属性

print(result)
上一篇:day08_Python3的普通方法和静态方法
下一篇:没有了
网友评论