Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
質問があります。私はリストを持っています
L1 - {'a','b','c'} L2 - {'d','e','f'}
L1とL2を別々のリストに保存しているので、ループすることができます。
X - {'L1','L2'}
現在、この操作X{1}{1}を実行できません。誰かが代替案を知っていますか?
要素「a」にアクセスする必要があります
セルのセル配列を作成するにはX、次のように記述する必要があります。
X
X = {L1,L2};
その後、アクセスできますX{1}{1}
X{1}{1}