如何在python中删除以特定字符开头的单词?
例如。
string = 'Hello all please help #me'
我想删除以 #
#
我想要的结果是:
Hello all please help
python
python ×1