File size: 174 Bytes
e9d67ff
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import time


def getUptime(startTime: time) -> time:
    """

    Returns the number of seconds since the program started.

    """
    return time.time() - startTime