collections模块
Posted mengchangxin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了collections模块相关的知识,希望对你有一定的参考价值。
1 from collections import namedtuple 2 # Point=namedtuple(‘point‘,[‘x‘,‘y‘]) 3 # p1=Point(1,2) 4 # print(p1) 5 # 6 # Card=namedtuple("扑克牌",[‘suits‘,‘number‘]) 7 # c1=Card("黑桃",3) 8 # print(c1) 9 # 10 # Circle=namedtuple(‘圆‘,[‘x‘,‘y‘,‘r‘]) 11 # c11=Circle(1,2,5) 12 # print(c11) 13 # print(type(c11)) 14 class 圆: 15 def __init__(self,x,y,r): 16 self.x=x 17 self.y=y 18 self.r=r 19 # def __str__(self): 20 # return 21 c22=圆(1,2,3) 22 print(c22)
以上是关于collections模块的主要内容,如果未能解决你的问题,请参考以下文章
elasticsearch代码片段,及工具类SearchEsUtil.java
Python基础22_模块,collections,time,random,functools
CTS测试CtsWindowManagerDeviceTestCases模块的testShowWhenLockedImeActivityAndShowSoftInput测试fail项解决方法(代码片段