Files
AlgorithmNotes/Foundations/overview/calc_time.py
2015-05-08 02:04:04 +08:00

12 lines
158 B
Python

import math
sec = 1000000
min = 60 * sec
hour = 60 * min
day = 24 * hour
month = 30 * day
year = 365 * day
century = 100 * year
print("%3e" % 2 ** sec)