字典常用的方法包含: 1、增加key-value;通过dict_stu[key_new]={value_new}; 通过dict_stu.update(dict_new); 2、修改某个key对应的value;通过dict_stu[key_modify]={values_new} 3、查找某个key ...
分类:
其他好文 时间:
2020-02-02 23:35:43
阅读次数:
78
Delegate proper right to some user: Login/Logout Audit - GPO Setting - Event Viewer File Auditing Modify audit settings of the folder. ...
分类:
其他好文 时间:
2020-02-02 00:58:40
阅读次数:
85
双指针 class Solution: def moveZeroes(self, nums: List[int]) -> None: """ Do not return anything, modify nums in-place instead. """ i = j = 0 while j < l ...
分类:
其他好文 时间:
2020-01-31 23:02:26
阅读次数:
64
ALTER TABLE `dbname`.`tablename` MODIFY COLUMN `userid` int(11) UNIQUE 设置为唯一值,并且允许为空,如果为空,不计算在约束内,就是可以多个为空 ...
分类:
其他好文 时间:
2020-01-31 10:37:45
阅读次数:
80
@api.multidef button_cancel(self): for move in self: if not move.journal_id.update_posted: raise UserError(_('You cannot modify a posted entry of this ...
分类:
其他好文 时间:
2020-01-30 22:52:34
阅读次数:
125
when you have installed zabbix , it is important of changing password. How to install Zabbix on CENTOS 7 Setup 1 INSTALL Create the repos of Zabbix In ...
分类:
其他好文 时间:
2020-01-29 23:17:27
阅读次数:
88
html基本标签(下) 目标: 能够书写表格 能够写出无序列表 能够写出3~4个常用input表单类型 能够写出下拉列表表单 能够使用表单元素实现注册页面 能够独立查阅W3C文档 目录: 表格标签 列表标签 表单标签 综合案列 查阅文档 1.表格标签 表格是实际开发中常用的标签 1.表格的主要作用 ...
分类:
Web程序 时间:
2020-01-23 22:50:28
阅读次数:
164
1. 创建二维表 -- create table 表名 ( -- 字段名1 字段类型 [not null] [primary key] , -- 字段名2 字段类型 check(条件判断), -- 字段名3 字段类型 , -- ... -- constraint 约束名 primary key(字段 ...
分类:
数据库 时间:
2020-01-22 16:13:50
阅读次数:
164
原文地址:https://www.jianshu.com/p/a0357b185da8 符号含义 ' '没有修改 'A'添加到本地代码仓库Add 'C'冲突Conflict 'D'删除Delete 'I'忽略Ignore 'M'修改Modify 'R'替换Replace 'X'外部定义创建的版本目录 ...
分类:
其他好文 时间:
2020-01-19 15:18:22
阅读次数:
99
1760:树上数颜色 时间限制: 3000 ms 内存限制: 524288 KB提交数: 35 通过数: 9 【题目描述】送你一棵n个点的树,树根为1。一开始每个点上有一个1~n 的颜色ci,不同点颜色可以相同。 现在有 q 次操作, 分为两种类型: 1 u l r:询问子树 u 中有多少种在 l ...
分类:
其他好文 时间:
2020-01-19 00:27:55
阅读次数:
104