Skip to content
Archan Patkar edited this page May 17, 2018 · 1 revision

sleep(n)

This function puts the thread in wait state for atleast n seconds

Example

from Panim import *

print("Hello")
sleep(3)
print("World")
Clone this wiki locally