-1
A
回答
5
我詳細:
import datetime
s = "20120808111051"
parsed_datetime = datetime.datetime.strptime(s, "%Y%m%d%H%M%S")
1
在最近的Python版本中,你可以使用函數strptime:
http://docs.python.org/library/time.html#time.strptime
你也可以做到這一點在老的Python版本:
from datetime import datetime
d = '20120808111051'
print datetime(int(d[0:4]), int(d[4:6]), int(d[6:8]), int(d[8:10]), int(d[10:12]), int(d[12:14]))
1
你需要datetime.strptime:http://docs.python.org/library/datetime.html#datetime.datetime.strptime
例子:
>>> import datetime
>>> datetime.datetime.strptime('20120808111051', '%Y%m%d%H%M%S')
datetime.datetime(2012, 8, 8, 11, 10, 51)
請注意,我只猜你張貼的字符串的格式(即0808
是月份日期還是日間月份?),您必須知道這一點。
+0
它必須是月份日。日月沒有任何意義,只有一個完全屁股後衛的日期格式,這是與怪異的分隔符,'/':) – Kimvais 2012-08-08 07:12:20
相關問題
- 1. 將字符串轉換成datetime在python
- 2. 轉換cookie字符串成Python字典
- 3. 如何削減字符串轉換成字符串對在python
- 4. 的Python轉換成字符串元組
- 5. Python的 - 分裂字符串轉換成成對字符
- 6. Python字符串轉換器;如何在python中轉換字符串
- 7. python字符串轉換
- 8. python - 字符串轉換
- 9. 字符串轉換成Java
- 10. 轉換字符串轉換成int()
- 11. 轉換的java字符串轉換成JavaScript字符串
- 12. 如何將字符串轉換成字典在python
- 13. 使用Unicode字符串轉換成字典在Python
- 14. 如何把字符串轉換成一個字典在Python
- 15. Python的轉換字符字符串轉換成適當的表結構
- 16. 轉換爲字符串在python
- 17. 字符串轉換爲在python
- 18. 轉換字符串長在python
- 19. 字符串轉換爲在python
- 20. 轉換的字符串在python
- 21. 字符串轉換爲在Python
- 22. 轉換JSON字符串在python
- 23. 轉換字符串元素在python
- 24. 轉換列表在Python XML字符串
- 25. 在python將字符串轉換到短
- 26. 轉換字符串列表在Python
- 27. 字符串元組轉換在python
- 28. 在python中轉換unicode字符串
- 29. 將字符串轉換成JSON在JavaScript
- 30. 字符串轉換成JSON在Android的
「年紀大」幾歲? – 2012-08-08 07:07:08
你也可以使用'datetime.datetime.strptime'。 – 2012-08-08 07:07:47
據我所知Python 2.4不提供strptime函數。但我不確定哪個是提供此功能的第一個版本。 – mvillaress 2012-08-08 07:09:19