您当前的位置:首页 > 计算机 > 编程开发 > Python

Python3中创建文件夹目录的时候特殊符号处理转义

时间:12-09来源:作者:点击数:

Python3中创建文件夹目录的时候特殊符号处理转义

# 创建目录的时候,不能包含一些特殊字符要转义
news_title = ''
char_list = ['*','|',':','?','/','<','>','"','\\']
news_title_result = news_title
for i in char_list:
    if i in news_title :
        news_title_result = news_title.replace(i,"_")
方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门
本栏推荐