试图将小时,分钟和秒添加到数据框python的日期时间列

我试图将hh:mm:ss列添加到格式为YYYY \ MM \ DD hh:mm:ss的列中,但出现一些错误。确切的数据如下,

col1 = 1:08:10

col2 = 2019/02/22 08:56:32

我试图通过将col1添加到col2获得col3作为2019/02/22 10:04:42。

我正在使用下面的代码,

    col3 = pd.to_timedelta(col2).dt.strftime("%Y/%m/%d %H:%M:%S")) + pd.to_timedelta(col1)

我收到错误消息,

KeyError: '/'

During handling of the above exception, another exception occurred:

ValueError                                Traceback (most recent call last)
pandas/_libs/tslibs/timedeltas.pyx in pandas._libs.tslibs.timedeltas.array_to_timedelta64()

pandas/_libs/tslibs/timedeltas.pyx in pandas._libs.tslibs.timedeltas.parse_timedelta_string()

pandas/_libs/tslibs/timedeltas.pyx in pandas._libs.tslibs.timedeltas.timedelta_from_spec()

pandas/_libs/tslibs/timedeltas.pyx in pandas._libs.tslibs.timedeltas.parse_timedelta_unit()

ValueError: invalid unit abbreviation: /

请帮忙。