The threading module offered with Python includes a simple-to-implement locking mechanism that will permit you to synchronize threads. A new lock is formed by calling the Lock() method, which returns the new lock.
The acquire(blocking) method the new lock object would be applied to force threads to run synchronously. The optional blocking parameter enables you to manage whether the thread will wait to acquire the lock.
If blocking is located to 0, the thread will return at one time with a 0 value if the lock cannot be obtained and with a 1 if the lock was acquired. If blocking is set to 1, the thread will block and wait for the lock to be freed.
The release() method of the new lock object would be used to free the lock when it is no longer required