会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
shulongshuyue
博客园
首页
新随笔
联系
订阅
管理
2024年7月4日
python logging 自定义备份的日志文件命名
摘要: import time import logging from logging.handlers import TimedRotatingFileHandler def log_file_namer(log_file_name): log_file_name_split = log_file_nam
阅读全文
posted @ 2024-07-04 22:36 shulongshuyue
阅读(15)
评论(0)
推荐(0)
编辑
2021年3月31日
赋值与解包
摘要: # python3.6.8x, y = (1, 2)print(x, y) # 1 2x, y = (1, 2, 3)print(x, y) # ValueError: too many values to unpack (expected 2)x, *y = (1, 2, 3)print(x, y
阅读全文
posted @ 2021-03-31 09:58 shulongshuyue
阅读(98)
评论(0)
推荐(0)
编辑
2019年7月3日
利用切片赋值为空串达到删除列表值的目的
摘要: l = [1, 2, 3, 4, 5, 6, 7, 8, 9] l[1:4] = '' print(l) >>>[1, 5, 6, 7, 8, 9]
阅读全文
posted @ 2019-07-03 21:40 shulongshuyue
阅读(149)
评论(0)
推荐(0)
编辑
公告