摘要: 栈:后进先出 单向队列:先进先出 双向队列: import collections d = collections.deque() d.append('1') print(d) class: append: Add an element to the right side of the deque. 阅读全文
posted @ 2016-06-04 11:37 张瑞东 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 以后自己看自己的博客的话,我选择死亡。 divmod(a,b) #返回a//b的值和余数 s = divmod(97,10) print(s) n1, n2 = divmod(89,5) print(n1,n2) isinstance() #判断对象是否是某个类的实例 isinstance() #判 阅读全文
posted @ 2016-06-04 11:29 张瑞东 阅读(389) 评论(0) 推荐(0) 编辑