Python配列の入れ替え 1行で入れ替える方法です。 a = [1, 2, 3, 4, 5] a[2], a[3] = a[3], a[2] print(a) # [1, 2, 4, 3, 5] s... 2021.08.20Python