Sleep

Sat 17 May 2025

title: "Sleep" author: "Rj" date: 2019-05-20 description: "-" type: technical_note draft: false


import time

print('One')
print('Waiting for 3 seconds')
time.sleep(3)
print('Two')
One
Waiting for 3 seconds
Two


Score: 0

Category: basics