本站改版新增arduino频道
"""
time.sleep(sec)
函数说明:睡眠给定的秒数。
sec:睡眠时间
可以为浮点数,整数
示例:
"""
import time
def mySleep():
time.sleep(3)#睡眠3秒
print("hello")
mySleep()
"""
执行mySleep()函数后,你会发现过了三秒才会打印“hello”。
其他类似time(sec)的函数:
time.sleep_ms(ms):睡眠给定的毫秒数,为int型。
time.sleep_us(us):睡眠给定的微秒数,为int型。
"""
Copyright © 2014 ESP56.com All Rights Reserved
晋ICP备14006235号-22 晋公网安备14108102001165号
执行时间: 0.0096189975738525 seconds