生成特定年份的每个月开始/结束的时间戳

时间:2017-08-22 15:54:54

标签: python python-2.7 date

所以我想要特定年份每个月的开始/停止时间戳,所以我想出了这个:

#!/usr/bin/env python
# --*-- encoding: utf-8 --*--

import datetime
from dateutil.relativedelta import relativedelta

def convert_datetime_to_timestamp(datetime_object):
    return int((datetime_object - datetime.datetime(1970, 1, 1)).total_seconds())

def get_timestamp_one_month_later(timestamp):
    start = datetime.datetime.fromtimestamp(float(timestamp))
    return convert_datetime_to_timestamp(start + relativedelta(months=+1))

def get_wholeyear_months_start_end(year):
    january_1st = convert_datetime_to_timestamp(datetime.datetime.strptime("{}/01/01-00:00:01".format(year), '%Y/%m/%d-%H:%M:%S'))

    whole_year_timestamps = [january_1st]
    old_timestamp = january_1st
    for _ in range(12):
        old_timestamp = get_timestamp_one_month_later(old_timestamp)
        whole_year_timestamps.append(old_timestamp)

    return whole_year_timestamps

print get_wholeyear_months_start_end(1996)

生成这个:

820454401 = 1/1/1996 à 1:00:01
823136401 = 1/2/1996 à 2:00:01
825645601 = 1/3/1996 à 3:00:01
...
852145201 = 1/1/1997 à 20:00:01

正如您所看到的,每次延迟1小时。 我无法弄清楚为什么(我猜这与我的语言环境有关但究竟是什么?)。

我在带有法语区域设置的Windows 7上使用python 2.7。

感谢。

2 个答案:

答案 0 :(得分:2)

为什么不这样呢?

for i in range(1,13):
    print (datetime.datetime(1996, i, 1) - datetime.datetime(1970, 1, 1)).total_seconds()

答案 1 :(得分:1)

>>> from datetime import datetime
>>> for mois in range(1,13):
...     d = datetime(1996, mois, 1, 0, 0, 1)
...     '%s = %s' % (int(d.timestamp()), d.strftime('%Y/%m/%d à %H:%M:%S'))
...     
'820472401 = 1996/01/01 à 00:00:01'
'823150801 = 1996/02/01 à 00:00:01'
'825656401 = 1996/03/01 à 00:00:01'
'828331201 = 1996/04/01 à 00:00:01'
'830923201 = 1996/05/01 à 00:00:01'
'833601601 = 1996/06/01 à 00:00:01'
'836193601 = 1996/07/01 à 00:00:01'
'838872001 = 1996/08/01 à 00:00:01'
'841550401 = 1996/09/01 à 00:00:01'
'844142401 = 1996/10/01 à 00:00:01'
'846820801 = 1996/11/01 à 00:00:01'
'849416401 = 1996/12/01 à 00:00:01'