python特殊方法定制类
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python特殊方法定制类相关的知识,希望对你有一定的参考价值。
#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特殊方法定制类的主要内容,如果未能解决你的问题,请参考以下文章