后面只能是模块或包
from 后面只能是模块或包,import 后面可以是任何变量
可以简单的记成:第一个空只能填模块或包,第二个空填啥都行。
通过from import可以正常都模块
D:\ANACONDA\envs\pytorch\python.exe C:/Users/Administrator/Desktop/Code/LearnPyQt5/test.py
Traceback (most recent call last):
File "C:/Users/Administrator/Desktop/Code/LearnPyQt5/test.py", line 3, in <module>
import string.ascii_lowercase
ModuleNotFoundError: No module named 'string.ascii_lowercase'; 'string' is not a package
Process finished with exit code 1
系统认为string是一个包,后面是模块
发生报错
我们想导入系统模块的string模块