ValueError:时间数据'\ n \ n253.64 \ nUSD \ n \ n'与格式'%b%d,%Y'不匹配

时间:2019-05-19 16:55:49

标签: python datetime strptime

我正在尝试将常规数据(例如2019年5月17日)转换为pythone的数据(例如2019-05-17)。我做到了,但是我也有可变的价格。而且我不知道为什么,但是python还是我想将日期转换为日期格式的十年。这是无法使我继续执行代码的错误。

ime = cha[0].text
ttime  = datetime.strptime(ime, '%b %d, %Y')
time = ttime.date()
price = cha[4].text
12             cha = coi[i].findAll('td')
13             ime = cha[0].text
14             ttime  = datetime.strptime(ime, '%b %d, %Y')
15             time = ttime.date()
16             volume = int(cha[5].text.replace(',',''))

ValueError: time data '\n\n253.64\nUSD\n\n' does not match format '%b %d, %Y'

Ethereum(ETH)   2019-05-18  234.60

我得到了结果,现在我的约会是好的,但是我不知道为什么会发生这个错误

0 个答案:

没有答案