from collections import namedtuple 使用

from collections import namedtuple


Point = namedtuple('Point', ['x', 'y'])#本质就是等价于 class Point():
                 #                                           def __init__(self,x,y):
                 #                                                    self.x=x
                 #                                                    self.y=y
p = Point(11, y=22) 
print(p)

 这里面起名是有点玄学

from collections import namedtuple


Point = namedtuple('dsafdsf', ['x', 'y'])#本质就是等价于 class Point():
                 #                                           def __init__(self,x,y):
                 #                                                    self.x=x
                 #                                                    self.y=y
                 #得到的类就叫Point来引用即可
p = Point(11, y=22) 
print(p)
View Code

猜你喜欢

转载自www.cnblogs.com/zhangbo2008/p/9245146.html