mirror of
https://github.com/Azure/MachineLearningNotebooks.git
synced 2025-12-19 17:17:04 -05:00
9 lines
164 B
Python
9 lines
164 B
Python
# Copyright (c) Microsoft. All rights reserved.
|
|
# Licensed under the MIT license.
|
|
|
|
import time
|
|
|
|
print("Wait for 10 seconds..")
|
|
time.sleep(10)
|
|
print("Done waiting")
|