循环控制语句 之 with_indexed_items

添加索引

- hosts: all
  tasks:
  - name: debug 
    debug:
      msg: "{{ item }}"
    with_indexed_items:
    - [1,2,3]
    - ['a','b','c','d']
- hosts: all
  tasks:
  - name: debug 
    debug:
      msg: "{{ item.0 }}"
    with_indexed_items:
    - [1,2,3]
    - ['a','b','c','d']
- hosts: all
  tasks:
  - name: debug 
    debug:
      msg: "{{ item.0 }} {{ item.1 }}"
    with_indexed_items:
    - [1,2,3]
    - ['a','b','c','d']
posted @ 2023-01-20 10:28  mingtian是吧  阅读(12)  评论(0编辑  收藏  举报