Answers for "no special characters puthon"

2

remove special characters from string python

import re
re.sub('[^A-Za-z0-9]+', '', mystring)
Posted by: Guest on May-14-2021
2

python print show special characters

a = "HellotWorldnHello World"
print(repr(a))
# 'HellotWorldnHello World'
Posted by: Guest on August-05-2020

Code answers related to "no special characters puthon"

Python Answers by Framework

Browse Popular Code Answers by Language