🖥

#python の datetime で明日の 時・分をランダムに生成する例

2019/04/13に公開
>>> import datetime

>>> now = datetime.datetime.now()
>>> now
# datetime.datetime(2019, 4, 13, 18, 44, 57, 269002)

>>> rand_datetime_today = now.replace(hour=random.randint(1,23), minute=random.randint(1,59), second=0, microsecond=0)
>>> rand_datetime_today
# datetime.datetime(2019, 4, 13, 3, 8)

>>> rand_datetime_tomorrow = rand_datetime_today + datetime.timedelta(days=1)
>>> rand_datetime_tomorrow
# datetime.datetime(2019, 4, 14, 3, 8)

Original by Github issue

https://github.com/YumaInaura/YumaInaura/issues/1238

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

https://line.me/ti/g2/eEPltQ6Tzh3pYAZV8JXKZqc7PJ6L0rpm573dcQ

Twitter

https://twitter.com/YumaInaura

公開日時

2019-04-13

Discussion