exercism-solutions/python/gigasecond/gigasecond.py
2021-07-06 18:07:18 +03:00

4 lines
103 B
Python

from datetime import datetime, timedelta
def add(moment):
return moment + timedelta(seconds=1e+9)