字符串时间转datetime时间 from datetime import datetime b='2021-04-26 11:23:56' c = datetime.strptime(b, "%Y-%m-%d %H:%M:%S") print(c) # datetime.datetime(2021 ...
分类:
编程语言 时间:
2021-04-27 14:35:01
阅读次数:
0
1、css样式导入 2、css基础选择器 3、css+div布局 4、背景图片 5、text文本 6、font字体 ...
分类:
Web程序 时间:
2021-04-27 14:32:35
阅读次数:
0
1 Could not execute Write_rows event on table cs3.test01; Duplicate entry ‘7‘ for key ‘test01.PRIMARY‘ 1.1 主库操作 SHOW BINARY LOGS; PURGE BINARY LOGS TO ...
分类:
数据库 时间:
2021-04-27 14:28:23
阅读次数:
0
Sub Sort_Sheets() Dim sCount As Integer, I As Integer, R As Integer ReDim Na(0) As String sCount = Sheets.Count For I = 1 To sCount ReDim Preserve Na( ...
分类:
编程语言 时间:
2021-04-27 14:27:14
阅读次数:
0
ESLint模式下for in遍历对象会报错,可以这样解决: let val = { shu: [1, 2, 3] }; for (let item in val) { if (val.hasOwnProperty(item)) { console.log(item); } } 因为我们在遍历一个对 ...
分类:
移动开发 时间:
2021-04-27 14:25:28
阅读次数:
0
简单的定义 const numArr:number[]=[1,2,3] const strArr:string[]=['a','b','c'] const undeArr:undefined[]=[undefined,undefined] 数组中有字符串又有数组的类型 const arr:(numb ...
分类:
编程语言 时间:
2021-04-27 14:24:27
阅读次数:
0
一、使用JS的方法 1、通过标签属性添加 onclick = "alert('我出来了!')"; onmouseover = "alert('鼠标移上来,我就出来了!')"; onmouseout = "alert('鼠标移走,我就出来了!')"; 2、在script标签对里面写JS代码 3、外部文 ...
分类:
Web程序 时间:
2021-04-27 14:22:07
阅读次数:
0
Typora 软件的基本使用 1. 标题 一级标题: # 二级标题:## .. 2. 列表 1.1 无序列表(-) 1.2 有序列表(1.) 3. 引用(>) command+option+Q 引用效果 4. 代码块 (```+代码编程语言) command+option+C print("hell ...
分类:
其他好文 时间:
2021-04-27 14:15:28
阅读次数:
0
华东师范大学软件学院《安全编程》课程项目 内含八个项目,分别是 Miller-Rabin, Stream Cipher, DES, AES, RSA, ECC, HASH, Digital Signature 地址参考 \(github\) ...
分类:
其他好文 时间:
2021-04-26 14:11:14
阅读次数:
0
1、熟悉Windows CryptoAPI提供的常用函数接口。 2、掌握Windows CryptoAPI的使用。 3、利用Windows CryptoAPI设计和实现一个小型密码系统(如文件加密机),完成加解密、摘要运算、数字签名等功能。 1. 先编写一个加密的代码,使用Windows crypt ...