timedelta
timedelta
start = datetime.datetime.now() ... # process code goes here end = datetime.datetime.now() # we get the total runtime in seconds runtime = (end - start).seconds # we will assume 30000 f'{datetime.timedelta(seconds=runtime)}'
# https://towardsdatascience.com/lesser-known-python-features-f87af511887 start = datetime.datetime.now() ... # process code goes here end = datetime.datetime.now() # we get the total runtime in seconds runtime = (end - start).seconds # we will assume 30000 # how many hours are in these secs, what are the remaining secs? hours, remainder = divmod(runtime, 3600) # now how many minutes and seconds are in our remainder? mins, secs = divmod(remainder, 60) print("{:02d}:{:02d}:{:02d}".format(hours, mins, secs))
timedelta.txt · 마지막으로 수정됨: 2024/03/23 02:38 저자 127.0.0.1