python 毫秒延时
时间: 2023-12-23 19:28:36 浏览: 80
python3 sleep 延时秒 毫秒实例
5星 · 资源好评率100%
以下是两种Python实现毫秒延时的方法:
1. 使用time模块的sleep()函数实现毫秒延时:
```python
import time
# 延时100毫秒
time.sleep(0.1)
```
2. 使用pygame模块的time.wait()函数实现毫秒延时:
```python
import pygame
# 初始化pygame
pygame.init()
# 延时100毫秒
pygame.time.wait(100)
```
阅读全文