该帮助的版本不再更新,请参见https://www.jmp.com/support/help/zh-cn/15.2 获取最新的版本.


list2 = {{"a", "b"}, {"c", "d"}};
list2[3] = {"apple", "banana"}; // specify a list as the third item
Show( list2 );
If you do not know the number of items in a list, use N Items(). In this example, an empty list is inserted at the end of the list.
list1 = {"a", "b"};
list1[N Items( list1 ) + 1] = {};
Show( list1 );