码迷,mamicode.com
首页 >  
搜索关键字:with_items    ( 3511个结果
leetcode 探索 查找表类算法
1、给定一个字符串,请将字符串里的字符按照出现的频率降序排列。 import collections def frequencySort(s): dic = dict(collections.Counter(s)) res = sorted(dic.items(),key = lambda item ...
分类:编程语言   时间:2020-07-04 19:04:04    阅读次数:65
pyQt5下拉式复选框QComboCheckBox
from PyQt5.QtWidgets import QComboBox,QLineEdit,QListWidget,QCheckBox,QListWidgetItem class ComboCheckBox(QComboBox): def __init__(self,items):#items= ...
分类:其他好文   时间:2020-07-04 13:45:23    阅读次数:88
字典元素如何遍历
字典是有{name : value}对组成的。一个对成为一个item, 所有的对称为items 例如: dict = {'n1' : 'v1', 'n2' : 'v2', 'n3' : 'v3', 'n4': 'v4', 'n5' : 'v5'}for (key,value) in dict.ite ...
分类:其他好文   时间:2020-07-04 01:26:38    阅读次数:58
python数据结构和算法
栈-先进后出 class Stack(): def __init__(self): self.items = [] def push(self,item): self.items.append(item) def pop(self): return self.items.pop() def peek ...
分类:编程语言   时间:2020-07-01 00:22:01    阅读次数:98
python 的迭代
字典的迭代: #创建字典 dict={'a':1,'b':2,'c':3} #key和value的迭代 for key,value in dict.items(): print(key,':',value) #key的迭代 for key in dict: print(key) #value的迭代 ...
分类:编程语言   时间:2020-06-30 14:53:57    阅读次数:88
微信小程序 view中的image水平垂直居中
当 display: flex 配合 justify-content: center 使用时可以让view水平居中 而配合 align-items: center 用时可以实现垂直居中效果 .card-image-container{ width: 40%; height: 90%; align-i ...
分类:微信   时间:2020-06-30 10:35:20    阅读次数:123
python 数据结构 list和链表实现栈的三种方法
list实现, 头插带头结点的单链表实现链栈,两个队列实现栈 MAX_SIZE = 100 class MyStack1(object): """模拟栈""" def __init__(self): self.items = [] self.size = 0 def is_empty(self): ...
分类:编程语言   时间:2020-06-29 20:07:08    阅读次数:65
文档翻译经验分享(Markdown)
该教程基于VSCode 加一些插件 youdao translate https://marketplace.visualstudio.com/items?itemName=Yao-Translate.yao-translate 插件比较好用 按 Cmd+Shift+T 或 Ctrl+Shift+T ...
分类:其他好文   时间:2020-06-29 18:39:18    阅读次数:90
Flex布局
1:找个容器: .container { display: flex | inline-flex; //可以有两种取值:块元素,行内元素 } 2:容器的设置: .container { flex-direction: row | row-reverse | column | column-rever ...
分类:其他好文   时间:2020-06-29 13:17:23    阅读次数:63
A Simple List of What Can and Cannot Be Recycled
Three General Guidelines of Recycling Recycle all bottles, cans, and paper Keep items relatively clean Don’t mix plastic bags in with the rest of your ...
分类:其他好文   时间:2020-06-28 09:41:50    阅读次数:60
3511条   上一页 1 ... 11 12 13 14 15 ... 352 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!