摘要: class deque(object): """ deque([iterable[, maxlen]]) --> deque object A list-like sequence optimized for data accesses near its endpoints. """ def app 阅读全文
posted @ 2021-09-27 23:02 Lzwhehe 阅读(74) 评论(0) 推荐(0)
摘要: def extend(self, *args, **kwargs) 这种写法代表这个方法接受任意个数的参数如果是没有指定key的参数,比如单单‘apple’,‘people’,即为无指定,则会以list的形式放在args变量里面如果是有指定key的参数,比如item=‘apple’这种形式,即为有指 阅读全文
posted @ 2021-09-27 22:52 Lzwhehe 阅读(396) 评论(0) 推荐(0)