fork download
  1. tools=["LabelMe","VIA","CVAT"]
  2. print(tools)
  3. print("创建的列表内容:",tools)
  4. print("列表长度(工具个数):",len(tools))
  5. print("第一个工具是:",tools[0])
  6. print("最后一个工具是:",tools[-1])
Success #stdin #stdout 0.08s 14060KB
stdin
Standard input is empty
stdout
['LabelMe', 'VIA', 'CVAT']
创建的列表内容: ['LabelMe', 'VIA', 'CVAT']
列表长度(工具个数): 3
第一个工具是: LabelMe
最后一个工具是: CVAT