2021-04-22 12:31:20.901919 IST
-7 hours later, it will be 5 hours
2 hours later, it will be 14 hours
1 hours later, it will be 13 hours
-6 hours later, it will be 6 hours
5 hours later, it will be 17 hours
Time Travel
import pyperclip
import datetime
import random
x=datetime.datetime.now()
y=x.strftime("%H")
print(x, 'IST')
for i in range(5):
n=random.randint(-12,12)
print(str(n),' hours later, it will be ', int(y)+n,' hours')
print('Time Travel day or 24 hrs')
2021-04-22 12:17:57.621642 IST
-80 years later, it will be 1941
-507 years later, it will be 1514
-63 years later, it will be 1958
-453 years later, it will be 1568
979 years later, it will be 3000
Time Travel
Comments