码迷,mamicode.com
首页 >  
搜索关键字:modify    ( 1504个结果
dict
字典常用的方法包含: 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
Active Directory - Right Delegation and Audit
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
[leetcode]Move Zeroes
双指针 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
odoo检查规则
@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
How to install Zabbix on CENTOS 7
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基本标签(下)
html基本标签(下) 目标: 能够书写表格 能够写出无序列表 能够写出3~4个常用input表单类型 能够写出下拉列表表单 能够使用表单元素实现注册页面 能够独立查阅W3C文档 目录: 表格标签 列表标签 表单标签 综合案列 查阅文档 1.表格标签 表格是实际开发中常用的标签 1.表格的主要作用 ...
分类:Web程序   时间:2020-01-23 22:50:28    阅读次数:164
Oracle - 二维表相关
1. 创建二维表 -- create table 表名 ( -- 字段名1 字段类型 [not null] [primary key] , -- 字段名2 字段类型 check(条件判断), -- 字段名3 字段类型 , -- ... -- constraint 约束名 primary key(字段 ...
分类:数据库   时间:2020-01-22 16:13:50    阅读次数:164
[转]SVN 的一些状态含义
原文地址: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:树上数颜色
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
1504条   上一页 1 ... 13 14 15 16 17 ... 151 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!