ฉันจะแยกสตริงเวลาที่มีมิลลิวินาทีในมันด้วยหลามได้อย่างไร
ฉันสามารถแยกสตริงที่มีวันที่ / เวลาด้วยtime.strptime >>> import time >>> time.strptime('30/03/09 16:31:32', '%d/%m/%y %H:%M:%S') (2009, 3, 30, 16, 31, 32, 0, 89, -1) ฉันจะแยกวิเคราะห์สตริงเวลาที่มีมิลลิวินาทีได้อย่างไร >>> time.strptime('30/03/09 16:31:32.123', '%d/%m/%y %H:%M:%S') Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib/python2.5/_strptime.py", line 333, in strptime data_string[found.end():]) ValueError: unconverted data remains: .123