为列表中的特定项目编制索引

Indexing specific items in a list

提问人:user1664564 提问时间:4/11/2023 更新时间:4/11/2023 访问量:15

问:

如何使用此随机数据集中的代码为以下项目编制索引:

    Move number (0,1,2,3 etc) in all lines

在第一行中 - 值“3” 在第一行 - 起始方向(字符串)“东南”

 In the remaining lines -the movement instruction (character string)' Move & turn left' etc.


    [[0, 3, 'South east'],
    [1, 'Move & turn left'],
    [2, 'Move & turn right'],
    [3, 'Move & turn left'],
    [4, 'Move forward'],
    [5, 'Move & turn right'],
    [6, 'Move & turn right'],
    [7, 'Move & turn right'],
    [8, 'Move & turn right'],
    [9, 'Move & turn left']]

我尝试使用打印语句来标识列表项

    print(function_name [0][2]) to return what is item is being identified etc.

不确定是否需要切片才能返回我具体想要的东西。

索引 切片

评论


答: 暂无答案