공부
[Python] datetime, timestamp
승가비
2021. 1. 14. 07:21
728x90
import time
print(time.time())
[Python] datetime, timestamp 변환
timestamp 만들기 timestamp = 초 * 분 * 시 * 일 timestamp = 60 * 60 * 24 * 30 print(timestamp) # 2592000 str 으로 변환 timestamp ➠ str import time timestamp = time.time() s = str(timestamp) print(s)..
inma.tistory.com
728x90