tools=["labelme","via","cvat"] print("创建的列表内容为:",tools) print("列表长度(工具个数):",len(tools)) print("第一个工具是:",tools[0]) print("最后一个工具是:",tools[-1]) print()