枚举 1. 枚举 枚举类型( enum type )是指由一组固定的常量组成合法值的类型,本质上是int值。 Ⅰ. 用enum代替int常量 (1)int枚举模式 // FruitConsts.java /** * @author cph * create datetime 2021/6/8 16: ...
分类:
编程语言 时间:
2021-06-16 17:49:38
阅读次数:
0
PermissionError: [Errno 13] Permission denied:字段里不能有空格 执行文件 from docxtpl import DocxTemplatefrom datetime import datetimeimport timeimport datetimeimp ...
分类:
其他好文 时间:
2021-06-08 22:49:54
阅读次数:
0
create database zuoye; -- 创建数据库 use zuoye; -- 使?数据库 #创建?个库表 create table Student -- 学?表 ( Sno char(3) NOT NULL Primary key , -- 学号 ,设为主键,不允许空值 Sname c ...
分类:
数据库 时间:
2021-06-07 19:59:03
阅读次数:
0
转自: Python3使用opencv调用摄像头录制高清视频 教你如何利用python调用摄像头 #pip3 install opencv-python import cv2 from datetime import datetime FILENAME = 'myvideo.avi' WIDTH = ...
分类:
编程语言 时间:
2021-06-04 19:24:42
阅读次数:
0
//取当前时间 Date nowdate=new Date(); //转换时间格式 SimpleDateFormat simpleDate = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); order.setCreateTime(Timestamp.val ...
分类:
其他好文 时间:
2021-06-03 18:06:12
阅读次数:
0
利用django.utils.dateparse 将各种类型字符串处理为datetime from django.utils import dateparse date_time=dateparse.parse_datetime("2021-05-28T00:00:00") 利用django.uti ...
分类:
其他好文 时间:
2021-06-02 14:14:01
阅读次数:
0
#!/usr/bin/env python # encoding: utf-8 import datetime import os import shutil import subprocess import time import zipfile # 数据库用户名 db_user = "root" ...
分类:
数据库 时间:
2021-06-02 11:05:03
阅读次数:
0
源代码如下: BEGIN DECLARE i INT; DECLARE time_1 datetime; DECLARE ID_1 int; DECLARE charge_1 FLOAT; DECLARE length_1 FLOAT; DECLARE err_1 FLOAT; DECLARE RS ...
分类:
其他好文 时间:
2021-05-25 18:31:26
阅读次数:
0
1.arrow python的时间处理库,相对于time和datetime等库而言,语法更加简洁。参考文章 #安装 pip install arrow 注意:arrow库1.0版本后,timestamp方法的语法和低版本有点不太一样(目前发现的一个小bug) 2.pysnooper Python调试 ...
分类:
编程语言 时间:
2021-05-24 15:49:46
阅读次数:
0
Qt提供了库函数toMSecsSinceEpoch将系统时间更改为时间戳 //将当前系统时间转为时间戳 QDateTime dateTime = QDateTime::currentDateTime(); qint64 epochTime = dateTime.toMSecsSinceEpoch() ...
分类:
其他好文 时间:
2021-05-24 13:23:47
阅读次数:
0