一、import的基本用法
1.导入包名
import os
2.从包中导入函数
from math import pow
3.导入包并赋予别名
import math as m
4.从包中导入常量并赋予别名
from math import pi as p
5.导入包中所有内容
from math import *