带有顺序问题的Python日期时间

问题描述 投票:1回答:2

我正在尝试编写一个脚本,其中列表的3个变量。

首先,看看我目前的脚本:

import datetime as dt
import pandas as pd

x = ['jhon doe', 'GX']

y = ['donald ted', 'GY']

Z = ['smith joe', 'GZ']

start_date = dt.datetime(2019, 4,12)
end_date = dt.datetime(2019, 4,21)
daterange = pd.date_range(start_date, end_date)

for date in daterange:
    print(date)

我很困惑这个带来这样的输出:

12/04/2019, jhone doe, GX
13/04/2019, donald ted, GY
14/04/2019, smith jhoe, GZ
15/04/2019, jhone doe, GX
16/04/2019, donald ted, GY
17/04/2019, smith jhoe, GZ
18/04/2019, jhone doe, GX
19/04/2019, donald ted, GY
14/04/2019, smith jhoe, GZ
21/04/2019, jhone doe, GX

很明显,如果你看到我的预期输出。

谁能告诉我如何制作这个?上面给出了3个变量。

我认为没有必要写太多

python python-3.x python-datetime
2个回答
0
投票

我会使用模数函数以循环(x,y,Z)打印它。

import datetime as dt
import pandas as pd

x = ['jhon doe', 'GX']

y = ['donald ted', 'GY']

Z = ['smith joe', 'GZ']

start_date = dt.datetime(2019, 4,12)
end_date = dt.datetime(2019, 4,21)
daterange = pd.date_range(start_date, end_date)

i=0
for date in daterange:
    if i % 3 == 0:
        print (date.strftime('%d/%m/%Y'), *x, sep=',')
    elif i % 3 == 1:
        print (date.strftime('%d/%m/%Y'), *y, sep=',')
    else:
        print (date.strftime('%d/%m/%Y'), *Z, sep=',')
    i+=1

结果:

12/04/2019,jhon doe,GX
13/04/2019,donald ted,GY
14/04/2019,smith joe,GZ
15/04/2019,jhon doe,GX
16/04/2019,donald ted,GY
17/04/2019,smith joe,GZ
18/04/2019,jhon doe,GX
19/04/2019,donald ted,GY
20/04/2019,smith joe,GZ
21/04/2019,jhon doe,GX

2
投票

看起来你错过了工具箱中的工具:from itertools import cycle

cycle允许您创建迭代器而不是连续浏览列表。如果你点击列表的末尾,它将返回到开头。

from itertools import cycle

import datetime as dt
import pandas as pd

x = ['jhon doe', 'GX']

y = ['donald ted', 'GY']

z = ['smith joe', 'GZ']
r = (x, y, z)
pool = cycle(r)

start_date = dt.datetime(2019, 4,12)
end_date = dt.datetime(2019, 4,21)
daterange = pd.date_range(start_date, end_date)

for date in daterange:
    curent_person = next(pool)
    print('{}, {}, {}'.format(date.strftime('%d/%m/%Y'), curent_person[0], curent_person[1]))

输出:

12/04/2019, jhon doe, GX
13/04/2019, donald ted, GY
14/04/2019, smith joe, GZ
15/04/2019, jhon doe, GX
16/04/2019, donald ted, GY
17/04/2019, smith joe, GZ
18/04/2019, jhon doe, GX
19/04/2019, donald ted, GY
20/04/2019, smith joe, GZ
21/04/2019, jhon doe, GX
© www.soinside.com 2019 - 2024. All rights reserved.