学习Python的常用标准库模块使用方法
import os, sys, math, random print(os.name) print(sys.version) print(math.pi) print(random.randint(1, 10))
import