13 除算に使用する場合の「/」と「//」の違いは何ですか? どちらか一方を使用する利点はありますか?Python 2では、どちらも同じ結果を返すようです。 >>> 6/3 2 >>> 6//3 2 473 python math syntax operators floor-division