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 3 と Python 2.6 では、2 つの整数を除算して float を取得できることに気付きました。Python 2.6 の動作に戻すにはどうすればよいですか?
int/int = int を取得する別の方法はありますか?
これを試して:
a = 1 b = 2 int_div = a // b