1 2 3 4 5 6 7
import threading lock = threading.Lock() with lock: print("Make your bed.") with lock: print("Sleep in it.")