一、sys实战
import sys print('查看解释器的版本:',sys.version) print('查看操作系统:',sys.platform) #查看解释器的路径 for item in sys.path: print(item)