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/Pandas (例: 47/100) で除算を行うとき、答えの 10 進値を表示するにはどうすればよいですか?
前もって感謝します。
python2.x を使用している場合は、数字の1つを「浮動化」する必要があります。
float(47)/100 47.0/100
除算の両方の数値が整数の場合、python2.x は整数除算を行います。
1 floatify: 数値を強制的に float にする