''' # 标准库:系统自带的 格式:import module1[, module2, module3….modulen] import优点: 1、不管用import在同一个文件下执行多少次,系统默认只会真正导入一次 2、 防止同一个模块一遍一遍执行 # 使用标准库中模块中的内容:模块名.函数名/变量名 ''' # 每次只引入一个模块 import math import random import time # 一次性引入多个文件 import math, random, time # 使用 print(math.pi) print(random.random()) time.sleep(2) print(1234)