Answers for "how to add illegal characters to paths python"

0

how to add illegal characters to paths python

invalid = '<>:"/\|?* '

for char in invalid:
	filename = filename.replace(char, '')
	
print filename
Posted by: Guest on June-11-2021

Code answers related to "how to add illegal characters to paths python"

Python Answers by Framework

Browse Popular Code Answers by Language