from datetime import datetime
print(datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S.%f'))
1 2 3 | from datetime import datetime print(datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S.%f')) | cs |
1 2 3 4 5 6 7 | [user@vm ~]$ cat date.py from datetime import datetime print(datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S.%f')) [user@vm ~]$ [user@vm ~]$ python date.py 2017-10-17 12:06:03.552259 | cs |
- 참고 사이트
Format a datetime into a string with milliseconds, https://stackoverflow.com/questions/7588511/format-a-datetime-into-a-string-with-milliseconds
'프로그래밍 언어 > Python' 카테고리의 다른 글
파이썬에서 간단한 소켓 통신 예제 (0) | 2017.10.17 |
---|