https://www.cnblogs.com/evablogs/p/6692947.html dict: 键-值(key-value)对集合{key:value},查找速度极快,但浪费内存。 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 ...
分类:
编程语言 时间:
2019-04-29 15:54:32
阅读次数:
159
https://www.cnblogs.com/evablogs/p/6725242.html 文件的打开读写关闭(文件使用完毕后必须关闭,因为文件对象会占用操作系统的资源) 1 2 3 4 5 6 7 8 9 #写文件 with open(r'D:\Test\1.txt','w') as f: # ...
分类:
编程语言 时间:
2019-04-29 15:42:11
阅读次数:
207
https://www.cnblogs.com/evablogs/p/6699515.html 在理解函数式编程之前,我还是对函数的调用,参数传递以及函数的嵌套调用一头雾水,还是花了点时间整理了写思绪,以便我后面对装饰器复杂的参数传递和函数的调用的理解。 函数的定义 def 函数名(): 代码块 例 ...
分类:
编程语言 时间:
2019-04-29 15:28:05
阅读次数:
114
1,普通的标签,任何位置,都可以使用<%=后端变量%>来绑定值 2,后端变量需要定义,如:public string xxxx=“123123”; 3,服务器标签,runat="server"的标签,可以在后端设置它的值,style,visible等属性,但是就不能绑定 第一条的渲染方式了。 4,r ...
分类:
Web程序 时间:
2019-04-27 00:06:54
阅读次数:
212
class Solution: def prefixesDivBy5(self, A: List[int]) -> List[bool]: ans,t = [],0 for a in A: t = (t * 2 + a)%5 ans.append(False if t else True) r... ...
分类:
其他好文 时间:
2019-04-19 23:56:01
阅读次数:
265
★ overturn v.推翻 ★ disciplinary adj.纪律的; 训练的; 惩罚的; ★disciplined 有纪律的 ★discipline v.纪律 ★outlook 态度 ★pessimistic 悲观的 outlook 态度 ★visible adj.看得见的; 明显的,显然 ...
分类:
其他好文 时间:
2019-04-18 21:40:24
阅读次数:
123
H - 三角形 4.1 Description A lattice point is an ordered pair (x,y) where x and y are both integers. Given the coordinates of the vertices of a triangle( ...
分类:
其他好文 时间:
2019-04-16 01:34:05
阅读次数:
193
#include #define ll long long using namespace std; const int maxn=1e7+10; int vis[maxn]; int mu[maxn]; int prime[maxn]; int tot=0; int sum1[maxn]; int... ...
分类:
其他好文 时间:
2019-04-14 12:28:06
阅读次数:
122
转:http://ask.dcloud.net.cn/article/12856 写在前面:好像mui目前dialog系列唯独缺少showLoading加载框(加载中)组件,为了统一组件样式和体验,写了这么一个扩展插件。CSS和JS代码耦合性应该还是较低的,不妥之处欢迎指教!优点:可以同时兼容Htm ...
分类:
其他好文 时间:
2019-04-11 14:50:48
阅读次数:
134
<el-popover placement="bottom" visible-arrow="false" :offset="30" trigger="click"> <span slot="reference">show</span></el-popover> ...
分类:
其他好文 时间:
2019-04-11 14:44:52
阅读次数:
816