📜  Python 使用 translate() 从字符串中删除字符 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:03.204000             🧑  作者: Mango

代码示例1
# Python program to remove a character from a string using translate() method
text= '_User_'
print(text.translate({ord('_'):None}))