1、python标准库

it2025-11-02  4

Python标准库常见模块
操作系统相关:os 时间与日期:time、datatime 科学与计算:math 网络请求:urllib
一、os模块:主要是针对文件和目录的操作
# -*- coding: utf-8 -*- # @Author : wrx import os # 当前路径是否存在 if not os.path.exists("testdir"): # 创建目录 os
最新回复(0)