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
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
栈-先进后出 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
字典的迭代: #创建字典 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
当 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
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
该教程基于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
1:找个容器: .container { display: flex | inline-flex; //可以有两种取值:块元素,行内元素 } 2:容器的设置: .container { flex-direction: row | row-reverse | column | column-rever ...
分类:
其他好文 时间:
2020-06-29 13:17:23
阅读次数:
63
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