在Python 2.7中将unicode转换为int或str

时间:2015-06-27 15:51:12

标签: python python-2.7 unicode

所以我存储了一些我从网站上删除的数据。一段数据是一个数字,类型是unicode,我想将它转换为int或str然后转换为int,以便我可以将它们一起添加。 我使用的是python 2.7,unicode是你的11:33:52' 我怎样才能把它变成一个int

1 个答案:

答案 0 :(得分:0)

import time

a = u'11:33:52'

b = time.strptime(a, "%H:%M:%S")

print(time.strftime("%H:%M:%S", b))

>> 11:33:52

使用strptime将其设置为正确的格式,然后strftime将为您提供时间。

如果您获得月/日/年格式,此方法也适用。在这种情况下,将"%H:%M:%S"更改为"%a, %d %b %Y %H:%M:%S"