我有一个像这样的数组:
input2 = ["Other", "Y", "X", "Z", "Description"]
我想取下"Y", "X", "Z", "Description"
并将它们存储在一个变量中,但保持它们的顺序。
示例:
input2 = ["Z", "X", "Y", "Other", "Description"]
我们应该有:
input3 = ["Other"]
some_variable = ["Z", "X", "Y", "Description"]
感谢帮助。