gpt4 book ai didi

python - 有多少人在一周中的每一天的给定时间工作,python

转载 作者:行者123 更新时间:2023-12-04 08:42:26 25 4
gpt4 key购买 nike

我正在尝试创建这种人员配备的勇气,以使我的管理工作在工作中更轻松。 'days' 包含一个星期。
天数 = [M, T, W, Th, F]
days = [0, 1, 1, 1, 1] 表示他/她每天都在工作,星期一除外。
如果值为 2,则表示它们在特殊类次工作。
他/他从 start_time 到 end_time 工作 - 例如wakana 每天工作 0600-1400。
他/他在值为 2 的日子里从 special_start 到 special_end 工作,例如eleonor 周一和周五工作 0700-1900,周三工作 0700-1500。
我星期一休息了,但我知道有一种更好的方法,也许是使用函数,可以全天打印。我现在一直在玩它,但我无法弄清楚。先感谢您!我非常尊重你们所有的专家!

staffing_data = [
{'name': 'wakana',
'start_time': 6,
'end_time': 14,
'days': [1, 1, 1, 1, 1],
'special_start': None,
'special_end': None},

{'name': 'kate',
'start_time': 11,
'end_time': 21,
'days': [0, 1, 1, 1, 1],
'special_start': None,
'special_end': None},

{'name': 'eleonor',
'start_time': 7,
'end_time': 19,
'days': [1, 0, 2, 0, 1],
'special_start': 7,
'special_end': 15}]

at_7 = 0
at_11 = 0
at_15 = 0
at_19 = 0



for person in staffing_data:

if person['start_time'] <= 7 and person['end_time'] > 7 and person['days'][0] == 1:
at_7 += 1
if person['start_time'] <= 11 and person['end_time'] > 11 and person['days'][0] == 1:
at_11 += 1
if person['start_time'] <= 15 and person['end_time'] > 15 and person['days'][0] == 1:
at_15 += 1
if person['start_time'] <= 19 and person['end_time'] > 19 and person['days'][0] == 1:
at_19 += 1


print(f"{at_7} at 7")
print(f"{at_11} at 11")
print(f"{at_15} at 15")
print(f"{at_19} at 19")


#Monday Staffing
#2 at 7
#3 at 11
#1 at 15
#0 at 19

最佳答案

您只需要另一个循环来循环日期,并存储数据。

staffing_data = [
{'name': 'wakana',
'start_time': 6,
'end_time': 14,
'days': [1, 1, 1, 1, 1],
'special_start': None,
'special_end': None},

{'name': 'kate',
'start_time': 11,
'end_time': 21,
'days': [0, 1, 1, 1, 1],
'special_start': None,
'special_end': None},

{'name': 'eleonor',
'start_time': 7,
'end_time': 19,
'days': [1, 0, 2, 0, 1],
'special_start': 7,
'special_end': 15}]

days = ['M', 'T', 'W', 'Th', 'F']
#result = [{"at_7":0,"at_11":0,"at_15":0,"at_19":0} for _ in range(len(days))]
result = []
for _ in range(len(days)):
result.append({"at_7":0,"at_11":0,"at_15":0,"at_19":0})


for person in staffing_data:

for day in range(len(days)):
start = 'start_time'
end = 'end_time'

if person['days'][day] == 0:
continue
elif person['days'][day] == 2:
start = 'special_start'
end = 'special_end'

if person[start] <= 7 and person[end] > 7:
result[day]["at_7"] += 1
if person[start] <= 11 and person[end] > 11:
result[day]["at_11"] += 1
if person[start] <= 15 and person[end] > 15:
result[day]["at_15"] += 1
if person[start] <= 19 and person[end] > 19:
result[day]["at_19"] += 1

for i in range(len(days)):
print(days[i])
print(f"{result[i]['at_7']} at 7")
print(f"{result[i]['at_11']} at 11")
print(f"{result[i]['at_15']} at 15")
print(f"{result[i]['at_19']} at 19")
print()

关于python - 有多少人在一周中的每一天的给定时间工作,python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64491142/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com