标签:等价 view elf hid 分享 rom color 技术分享 closed
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)
from collections import namedtuple 使用
标签:等价 view elf hid 分享 rom color 技术分享 closed
原文地址:https://www.cnblogs.com/zhangbo2008/p/9245146.html