Files
exercism/python/gigasecond/gigasecond.py
2019-07-13 22:20:49 -05:00

3 lines
96 B
Python

from datetime import timedelta
def add(moment):
return moment + timedelta(seconds=(10 ** 9))