I am trying to add an Asia/Singapore timestamp as the first column of the following pandas dataframe,and name it as 'sdc_sequence_id'.
id col1 col2
01 A B
02 C D
03 E F
expected dataframe :
sdc_sqeuence_id id col1 col2
2002-10-27 12:00:00 01 A B
2002-10-27 12:00:02 02 C D
2002-10-27 12:00:02 03 E F
I tried doing this
df2['sdc_squence_id'] = df2['sdc_squence_id'].dt.tz_localize('Asia/Singapore'
But this is giving me a key error.. Help would be appreciated.