私は次のような配列を持っています:
input2 = ["Other", "Y", "X", "Z", "Description"]
を取り出し"Y", "X", "Z", "Description"
て変数に格納したいのですが、それらをその順序で保持します。
例 :
input2 = ["Z", "X", "Y", "Other", "Description"]
次のものが必要です。
input3 = ["Other"]
some_variable = ["Z", "X", "Y", "Description"]
手伝ってくれてありがとう。