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.
より具体的には、次の方法を理解したいと思います: name.replace xX が存在する場合は xX を y に置き換え、そうでない場合は X を置き換えるだけです。
このフォーラムを 1 時間検索して 2 時間にしましたが、あるものを別のものに置き換える方法しか見つかりませんでした。これは今では非常に簡単です。
/a
if 'x' in name: name = name.replace('xX','y') else: name = name.replace('X','y')