問題タブ [python-2to3]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
3 に答える
127 参照

python - 空白を含む文字列からの int の解析は、py2 と py3 で異なります

空白を含む文字列の解析が Python2 から Python3 に変更されました。

Python2 では次のようになります。

一方、Python3 では:

これを理解したら、ドキュメントでこの変更の説明/詳細を見つけようとしましたが、何も見つかりませんでした。

だから私の質問は: py2 から py3 に移行するためにコードを変更する方法は? i = int(s.replace(' ',''))行く方法はありますか?それとももっと良いアドバイスがありますか?そして、私が見つけられなかったその変更の説明はありますか?