fork download
  1. tools=["LabelMe","VIA","CVAT"]
  2. print("=" * 40)
  3. print("工具列表")
  4. print("创建的列表内容为:",tools)
  5. print("列表长度(工具个数):",len(tools) )
  6. print("第一个工具是:", tools[0] )
  7. print("最后一个工具是:", tools[-1])
  8. print(tools)
  9. print("=" * 40)
  10. print("工具介绍(使用循环)")
  11. # 使用循环遍历列表中的每个工具
  12. index = 1 # 增加序号变量
  13. for tool in tools:
  14. # 生成介绍语句
  15. description = f"工具:{tool} —— 适用于数据标注"
  16. # 带序号输出,更清晰
  17. print(f"{index}. {description}")
  18. index += 1 # 序号递增
  19. # 额外输出循环结束提示
  20. print("\n循环遍历完成!总共输出了", len(tools), "个工具的介绍。")
  21. print("=" * 40)
Success #stdin #stdout 0.07s 14132KB
stdin
Standard input is empty
stdout
========================================
工具列表
创建的列表内容为: ['LabelMe', 'VIA', 'CVAT']
列表长度(工具个数): 3
第一个工具是: LabelMe
最后一个工具是: CVAT
['LabelMe', 'VIA', 'CVAT']
========================================
工具介绍(使用循环)
1. 工具:LabelMe —— 适用于数据标注
2. 工具:VIA —— 适用于数据标注
3. 工具:CVAT —— 适用于数据标注

循环遍历完成!总共输出了 3 个工具的介绍。
========================================