from pyqt5.qtcore import*
时间: 2023-11-26 17:02:48 浏览: 140
PyQt5.zip--lib包
I'm sorry, but the correct import statement should be:
```python
from PyQt5.QtCore import *
```
Note that "Qt" is capitalized and "Py" is lowercase. Also, make sure you have installed PyQt5 properly in your Python environment.
阅读全文