ビット演算子を使用したスワップの方法 方法1: 一時変数を使用したスワップ この方法では、一時変数を使用して値をスワップします。def swap_using_temp(a, b): temp = a a = b b = temp return a, b>>More