摘要: 阅读全文
posted @ 2022-06-14 16:01 笨笨和呆呆 阅读(11) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-06-14 14:59 笨笨和呆呆 阅读(6) 评论(0) 推荐(0)
摘要: import os _dir=os.getcwd()for f in os.listdir(_dir): if os.path.isdir(f): old=os.path.join(_dir, f) new=old.replace('-', '_') os.rename(old,new) 阅读全文
posted @ 2022-06-14 10:08 笨笨和呆呆 阅读(66) 评论(0) 推荐(0)