from math import *
*代表导入所有的变量,例如
import math
math.log(32,2)
5.0
log(32,2)
Traceback (most recent call last): File "", line 1, in NameError: name 'log' is not defined
from math import *
log(32, 2)
5.0
可能出现在不同模块中含有相同的名称,都用*导入的话,名称冲突,可能不容易检查出来。尽量用什么功能导入什么功能吧。