example-code-2e/08-def-type-hints/ctime.py
2020-06-11 14:58:15 -03:00

6 lines
120 B
Python

import time
from typing import Optional
def ctime(secs: Optional[float] = None, /) -> str:
return time.ctime(secs)