Is there a way to time delay in Python?

Asked 1 years ago, Updated 1 years ago, 75 views

Does Python script also have functions such as sleep() of C or delay() of Arduino?

python sleep timedelay

2022-09-22 22:35

1 Answers

time on module

import time
time.sleep(second)

You can write it as


2022-09-22 22:35

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.