首页
DevOps
sre运维
云标签
归档
关于锦遥
更多
工具箱
首页
DevOps
sre运维
云标签
归档
关于锦遥
更多
工具箱
工具
chat
badge
友链
python 算法
[toc] python 算法 命名元组namedtupleIn [1]: from collections import namedtuple In [2]: Point = namedtuple('P','x,y') In [3]: type(Point) Out[3]: type In [4]: p1 = Point(1,10) In [5]: p1 O...
2019-12-15
python系统学习
python系统学习
阅读全文