标签: python datetime strptime
我有一个字符串变量start_d,我需要将其转换为日期并添加6天。我已经完成了:
start_d
end_d = datetime.datetime.strptime(start_d,'$d/%m/%Y')+datetime.timedelta(days=6)
但是由于某种原因,我收到一个错误:ValueError: time data '26/08/2019' does not match format '$d/%m/%Y'
ValueError: time data '26/08/2019' does not match format '$d/%m/%Y'
不确定我在这里做错了什么。