1.import xx :导入模块,在使用的时候需要 “ 模块.函数 ”来使用
例如:
1 import math 2 math.sqr(5)
2.from xx import xx 和 from xx import *
这两个本质没有区别,都是从其它模块里面导入函数。但是唯一的区别就是* 能够导入某个模块的所有东西。
而from xx import xx 在使用的时候可以直接使用xx 函数。
例如
from test import test_ from test import * test_() test_()
标签:区别,Python,xx,导入,模块,test,import From: https://www.cnblogs.com/future-panda/p/16918557.html