Python中随机生成未来一个月内的一个随机的日期时间

该函数可以产生从当前日期时间开始到未来一个月内的一个固定时间

import random
import timeit 
import time
import datetime

#该函数随机生成未来一个月内的日期
def generatorDatetime(): 
	dateTime_s=time.time() #获取当前时间戳
	dateTime_s=datetime.datetime.fromtimestamp(dateTime_s) #将时间戳转换为日期
	#print(dateTime_s)
	str_p=datetime.datetime.strftime(dateTime_s,'%Y-%m-%d %H:%M:%S') #将日期转换为字符串
	#print(str_p)

	#当前日期加一个月
	month=datetime.timedelta(days=30)
	dateTime_end=dateTime_s+month
	#print(dateTime_end)
	dateTime_end=datetime.datetime.strftime(dateTime_end,'%Y-%m-%d %H:%M:%S') #将日期转换为字符串
	#print(dateTime_end)

	#将字符串转换为时间戳
	dateTime_s_stamp=time.mktime(time.strptime(str_p,'%Y-%m-%d %H:%M:%S'))
	#print(dateTime_s_stamp)

	dateTime_e_stamp=time.mktime(time.strptime(dateTime_end,'%Y-%m-%d %H:%M:%S'))
	#print(dateTime_e_stamp)

	

	t=random.randint(dateTime_s_stamp,dateTime_e_stamp)
	date_touple=time.localtime(t)          #将时间戳生成时间元组
	date=time.strftime("%Y-%m-%d %H:%M:%S",date_touple) #将时间元组转成格式化字符串(1976-05-21)
	date=datetime.datetime.strptime(date,"%Y-%m-%d %H:%M:%S")
	#print(date)
	return date

直接调用上面的函数即可
print(generatorDatetime())
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值