导语:
本文主要介绍了关于python的attrs表示什么的相关知识,包括python中int的意思,以及查看变量地址的python内置函数是这些编程知识,希望对大家有参考作用。
attr可看作是一个类装饰器但又不仅仅是简单的装饰器,他使得我们编写类变得更加简单轻松。下面先通过一个简单的例子来见识下attr的强大吧。
现在我们需要编写一个类,有a,b,c两个属性,正常的写法:
class A(object):
def __init__(self, a, b, c):
self.a = a self.b = b self.c = c
看起来没那么复杂。好的,现在领导说班的打印输出不好看,没法比。好的,有需要就加吧。
from functools import total_ordering@total_orderingclass A(object):
def __init__(self, a, b, c):
self.a = a self.b = b def __repr__(self):
return "ArtisanalClass(a={}, b={})".format(self.a, self.b)
def __eq__(self, other):
if not isinstance(other, self.__class__):
return NotImplemented
return (self.a, self.b) == (other.a, other.b)
def __lt__(self, other):
if not isinstance(other, self.__class__):
return NotImplemented
return (self.a, self.b) < (other.a, other.b)
虽然看起来有点复杂,但是借助total_ordering,也算是以尽量少的代码实现了所需功能了吧。
但是,有没有更简洁的方式呢?让我们来看看借助于attr的实现:
import attr
@attr.sclass A(object):
a = attr.ib()
b = attr.ib()
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python3中的数组是如何定义的?10/31
- ♥ Python字符串中常用的方法12/14
- ♥ 什么是python json11/19
- ♥ python如何删除字符串的第一个字母?09/09
- ♥ 如何在 python 中使用 cmp() 函数?11/26
- ♥ 如何在python中调用函数11/10
内容反馈