I have the following dataframe in python:
num_plate_ID cam entry_date entry_time
0 XYA 2 2022-02-14 23:20:21
1 JDS 2 2022-02-12 23:20:21
2 OAP 0 2022-02-05 14:30:21
3 ASI 1 2022-04-07 15:30:21
Date and time are separated. I want to make a new column entry
with both data joined in TimeStamp format. Resulting example:
num_plate_ID cam entry_date entry_time entry
0 XYA 2 2022-02-14 23:20:21 2022-02-14 23:20:21
1 JDS 2 2022-02-12 23:20:21 2022-02-12 23:20:21
2 OAP 0 2022-02-05 14:30:21 2022-02-05 14:30:21
3 ASI 1 2022-04-07 15:30:21 2022-04-07 15:30:21