6 lines
120 B
Python
6 lines
120 B
Python
|
import time
|
||
|
from typing import Optional
|
||
|
|
||
|
def ctime(secs: Optional[float] = None, /) -> str:
|
||
|
return time.ctime(secs)
|