初识字典 字典 python中的数据类型之一 唯一 一种{} ,键值对的数据 dict 字典 字典 1、存储大量数据 比列表存储的数据要大 2、将数据和数据之间进行关联 定义 dic = {"键":"值"} dic = {"岳新力":["开车","唱","跳"],"孙一帆":9,25:"海绵",Tr ...
分类:
编程语言 时间:
2020-01-19 21:58:37
阅读次数:
61
先存个ABC板子题orz 1 #include<bits/stdc++.h> 2 using namespace std; 3 #define fi first 4 #define se second 5 #define tl rt<<1 6 #define tr rt<<1|1 7 #define ...
分类:
其他好文 时间:
2020-01-18 10:37:35
阅读次数:
73
1、带标题、表头的表格:"<td></td>" <table> <caption> /*表格的标题,居中显示*/ </caption> <tr> <th> /*表头,内容居中,加粗显示 */ </th></tr> <tr><td></td></tr> </table> 2、带结构的表格:当表格很长的 ...
分类:
Web程序 时间:
2020-01-18 10:25:31
阅读次数:
86
点击看demo 代码如下: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="h ...
分类:
编程语言 时间:
2020-01-18 09:11:09
阅读次数:
89
shell命令 tr 0、tr命令的专属图床 "点此快速打开文章" 【 图床_shell命令tr 】 1、tr命令的功能说明 ? 命令从标准输入中替换、缩减或者删除字符、并将结果写到标准输出, 里严格区分大小写。所有字符都尽量加双引号。 2、tr命令的语法格式 3、tr命令的选项说明 参数说明 c, ...
分类:
系统相关 时间:
2020-01-17 19:21:54
阅读次数:
106
<div id="app"> <table class="table table-bordered"> <tr v-for="item in workFlow"> <td> {{item.name}} </td> <td> {{getNodeStr(item.nodes)}} </td> <td> ...
分类:
其他好文 时间:
2020-01-16 19:16:58
阅读次数:
74
第一种,使用reversed 函数,reversed返回的结果是一个反转的迭代器,我们需要对其进行 list 转换 第二种,使用sorted函数,sorted是排序函数,它是对一个列表进行排序后生成一个新的list列表,而sort则是在原来的列表上直接进行排序。 其中,reverse是排序规则,Tr ...
分类:
编程语言 时间:
2020-01-15 23:21:03
阅读次数:
130
原标签:<tr id="selected"> <td class="Hint" id="groupIdList"><span class="color-red">*</span>已选分组:</td> <td id=groupIdList1 width="5%" colspan="2"></td></ ...
分类:
Web程序 时间:
2020-01-14 13:06:25
阅读次数:
176
html:<tr> <td class="Hint"><span class="color-red">*</span>选择分组:</td> <td width="40%"> <select id="groupId2" style="width: 80%;height: 30px"> <option ...
分类:
其他好文 时间:
2020-01-13 21:50:44
阅读次数:
91
<tbody th:if="${pageInfo?.list}"> <tr th:each="groupList,loopStatus : ${pageInfo?.list}"> <td id='number0' th:if="${flag}==0" th:each="group,loopStatu ...
分类:
Web程序 时间:
2020-01-13 21:50:11
阅读次数:
115