fork download
  1. print("---AI训练常用工具---")
  2. tools=["TensorFlow","PyTorch","Keras"]
  3. print("初始工具列表:",tools)
  4. print("当前工具数量:",len(tools))
  5. print("每个工具名称:")
  6. for t in tools:
  7. print("-",t)
Success #stdin #stdout 0.07s 14092KB
stdin
Standard input is empty
stdout
---AI训练常用工具---
初始工具列表: ['TensorFlow', 'PyTorch', 'Keras']
当前工具数量: 3
每个工具名称:
- TensorFlow
- PyTorch
- Keras