用户注册



邮箱:

密码:

用户登录


邮箱:

密码:
记住登录一个月忘记密码?

发表随想


还能输入:200字
云代码 - python代码库

property演示用法

2018-11-10 作者: jack_Ding举报

[python]代码库

# -*- coding: utf-8 -*-
'''请利用@property给一个Screen对象加上width和height属性,
以及一个只读属性resolution'''
class Screen(object):
    __slots__ = ('_width','_height')

    @property
    def width(self):
        return self._width
    @property
    def height(self):
        return self._height
    @property
    def resolution(self):
        if not self._width:
            raise ValueError('width is wrong!')
        if not self._height:
            raise ValueError('height is wrong!')
        else:
            return self._width*self._height
    @width.setter
    def width(self,value):
        self._width = value
    @height.setter
    def height(self,value):
        self._height = value
    
wh = Screen()
wh.width=10
wh.height=20
#wh.kuan=20  'Screen' object has no attribute 'kuan'
print('wh.width(10)',wh.width)
print('wh.height(20)',wh.height)
print('wh.resolution',wh.resolution)

s = Screen()
s.width = 1024
s.height = 768
print('resolution =', s.resolution)
if s.resolution == 786432:
    print('测试通过!')
else:
    print('测试失败!')


网友评论    (发表评论)


发表评论:

评论须知:

  • 1、评论每次加2分,每天上限为30;
  • 2、请文明用语,共同创建干净的技术交流环境;
  • 3、若被发现提交非法信息,评论将会被删除,并且给予扣分处理,严重者给予封号处理;
  • 4、请勿发布广告信息或其他无关评论,否则将会删除评论并扣分,严重者给予封号处理。


扫码下载

加载中,请稍后...

输入口令后可复制整站源码

加载中,请稍后...