如何通过添加与给定代理商和客户所在时区的“ agent_time”之间的小时数差异来创建附加列“ customer_time”

时间:2019-11-08 21:17:18

标签: pandas dataframe dictionary timezone

我的数据框中有三列,“ agent_time”,“ agent_timezone”和“ customer_timezone”。 我想派生一个名为“ customer_time”的新列

这是我的数据框的样子,

agent_timezone agent_time customer_timezone
``PST''13:50``EST''
'PST'15:50''CST'

注意:
1.代理时区始终为“ PST”
2.客户时区的可能值是

1. PST
2. CST
3. EST
4. MST

3。 agent_time在6:00到16:00之间

我希望如何使结果数据框看起来像

agent_timezone agent_time customer_timezone customer_time
``PST''13:50``EST''EST 16:50
``PST''15:50``CST''17:50

请帮助!

0 个答案:

没有答案