sleep(seconds)

Command:

sleep(seconds)

Command
Syntax:

sleep(seconds)

Module:

ti_system

Describe:

Sleep for a given number of seconds. Seconds argument is a float.

Python
Code
Sample:

from time import *

a=monotonic()

sleep(15)

b=monotonic()

print(b-a)

 

Run the program TIME

>>>15.0

Result:

Sleep for a given number of seconds. Seconds argument is a float.

Error:

 

Type or
Addressable
Component:

from ti_system import*

See Also: sleep