Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下からpythonを削除し、空白に置き換えるために使用する必要があります。%22NAME
python
%22
NAME
それはどのように行われますか?
NAME = 'best%22buy'
正規表現ではなく文字列置換を使用してください。
NAME = NAME.replace("%22", ' ')
NAME='best%22buy'.replace('%22',' ')