import是python中导入的意思。格式:import 模块名 【as 别名】。例如:
import math是导入标准库math。import numpy as np是导入扩展库numpy,并设置别名为np。