我有一個這樣的字符串:如何使用python從文本中刪除特定的符號?
字符串=「這是我2013年2月11日的文字,&它包含了這樣的人物! (例外)'
這些是我想要從我的字符串中刪除的符號。
!, @, #, %, ^, &, *, (,), _, +, =, `,/
我曾嘗試是:
listofsymbols = ['!', '@', '#', '%', '^', '&', '*', '(', ')', '_', '+', '=', '`', '/']
exceptionals = set(chr(e) for e in listofsymbols)
string.translate(None,exceptionals)
的錯誤是:
的整數需要
請幫我做這個!
http://stackoverflow.com/questions/3939361/remove-specific-characters-from-a-string- in-python 這可能是有用的! – 2013-03-08 06:32:14
@達達,感謝編輯:) – MHS 2013-03-08 07:30:24