python 时间段的随机日期输出

Posted see-young

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 时间段的随机日期输出相关的知识,希望对你有一定的参考价值。

生成随机的日期字符串,用于插入数据库。

通过时间元组设定一个时间段,开始和结尾时间转换成时间戳。

时间戳中随机取一个,再生成时间元组,再把时间元组格式化输出为字符串

python2代码如下

import time
import random

a1=(1976,1,1,0,0,0,0,0,0) #设置开始日期时间元组(1976-01-01 00:00:00)
a2=(1990,12,31,23,59,59,0,0,0) #设置结束日期时间元组(1990-12-31 23:59:59)

start=time.mktime(a1) #生成开始时间戳
end=time.mktime(a2) #生成结束时间戳

#随机生成10个日期字符串
for i in range(10): 
t=random.randint(start,end) #在开始和结束时间戳中随机取出一个
date_touple=time.localtime(t) #将时间戳生成时间元组
date=time.strftime("%Y-%m-%d",date_touple) #将时间元组转成格式化字符串(1976-05-21)
print(date)









以上是关于python 时间段的随机日期输出的主要内容,如果未能解决你的问题,请参考以下文章

在 Python 中获取随机时区感知日期时间

Python随机模块random & 日期时间のtime&&datetime

如何在python中将日期的天数设置为1-30之间的任意随机数?

Python获取并输出当前日期时间

Python 日期和时间的几种输出格式

从表中随机选择行 - Python Pandas 读取 SQL