如何在NetLogo中更改列表的第n项?

时间:2016-10-15 09:35:39

标签: list netlogo

我是NetLogo的新手,我正在尝试编写一个代码来列出其中一只海龟'所有海龟的参数以及每个步骤都会更改该列表。但是由于列表中的某些项目应该被修改并且我在列表中的位置工作,我想知道有人可以帮助我如何编写代码来更改该列表的第n项(我认为替换项目确实如此)不行。)。

由于

1 个答案:

答案 0 :(得分:2)

replace-item命令创建一个新列表:

to test
  let lst01 [0 1 2 3]
  let lst02 replace-item 0 lst01 99
  print (word "the first list is unchanged: " lst01)
  print (word "the new list is: " lst02)
end