后端开发
lww爱学习
这个作者很懒,什么都没留下…
展开
-
python列表删除元素
python列表删除元素原创 2022-09-29 18:01:41 · 23748 阅读 · 1 评论 -
python时间格式化/时间格式转换
"""获取某个时间"""import datetimeimport timefrom dateutil import relativedelta# 上月(eg: 202201)last_month = (datetime.datetime.now() + relativedelta.relativedelta(months=-1)).strftime("%Y%m")# 当月(eg: 202202)issue_no = time.strftime("%Y%m")# 下月(eg: 202.原创 2022-03-09 19:10:32 · 9614 阅读 · 0 评论 -
获取指定范围符合正态分布的随机数Go/Python
Box-Muller算法当x和y是两个独立且服从(0,1)均匀分布的随机变量时,有:Z1和Z2独立且服从标准正态分布,当带入均值和方差时:均值,标准差计算:# ...原创 2021-12-08 11:53:00 · 2184 阅读 · 0 评论 -
GO语言时间转换
package mainimport ( "fmt" "time")func main() { // 2021-07-23 15:36:00.346234 +0800 CST m=+0.000174001 now := time.Now() // 格式化 2021-07-23 15:36:00 time1 := time.Now().Format("2006-01-02 15:04:05") // unix时间戳格式化 time2 := now.Unix() .原创 2021-11-28 15:57:55 · 800 阅读 · 0 评论 -
go获取指定区间范围内随机数(全)
go指定区间范围随机数原创 2021-11-28 15:56:57 · 3556 阅读 · 0 评论 -
python时间时间换算 精确到毫秒
import timeimport datetimedef time_stamp1(): """ 时间戳 精确到毫秒,17位 :return: """ ct = time.time() local_time = time.localtime(ct) data_head = time.strftime("%Y%m%d%H%M%S", local_time) data_secs = (ct - int(ct)) * 1000 t.原创 2021-11-28 15:55:19 · 9951 阅读 · 0 评论 -
mysql批量插入数据 excutemany
#coding=utf8"""问题:往数据库批量插入10条数据的时候,在for循环里面使用excute插入,接口请求耗时>1s,严重影响效率;遂考虑使用excutemany批量插入,接口请求耗时400ms"""#逐条插入:cursor.excute()#批量插入:cursor.excutemany()#使用:executemany(templet,args)#templet:sql模板字符串,例如:insertintotable(id,nam...原创 2021-11-28 12:55:50 · 866 阅读 · 0 评论