공부
[Python] time.time()
승가비
2022. 4. 30. 00:31
728x90
import time
time.time() # 1522049204.295597
[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