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,"_")