码迷,mamicode.com
首页 > 编程语言 > 详细

python特殊方法定制类

时间:2017-08-13 13:28:48      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:特殊   str   ini   ret   python   class   form   方法   sel   

#coding:utf-8
class RoundFloat(object):
def __init__(self,val):
assert isinstance(val, float),"value must be a float"
self.value = round(val,2)
def __str__(self):
return "{:.2f}".format(self.value)

__repr__ = __str__
#def __repr__(self):
# return self.__str__()

r = RoundFloat(3.1567)
print r
print type(r)

output result:

3.16
<class ‘__main__.RoundFloat‘>

python特殊方法定制类

标签:特殊   str   ini   ret   python   class   form   方法   sel   

原文地址:http://www.cnblogs.com/klsw/p/7353063.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!