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