摘要:
os.getcwd()获取当前文件所在文件夹的路径 os.path.realpath(__file__)获取当前文件的路径. 注: 可以看出__file__表示了当前文件的path import os.path print(os.getcwd()) print(os.path.realpath(__ 阅读全文
摘要:
1. 处理对象是string 字符串 2. 遍历去除首尾指定字符串 str = '123abcd321' a = str.strip('123') print(a) 打印结果: abcd str = '12a3abcd321' a = str.strip('123') print(a) 打印结果: 阅读全文
摘要:
日志模块log_utils.py import logging # 创建一个日志器 logger = logging.getLogger() # 设置日志打印级别. 打印该级别及以上的日志信息. logger.setLevel(logging.DEBUG) # 创建指定的输出格式 format = 阅读全文