循环控制语句 之 with_nested
Posted mingtian是吧
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了循环控制语句 之 with_nested相关的知识,希望对你有一定的参考价值。
with_nested 和with_cartesian 实现的功能相同。嵌套循环可以理解为:
nest 英文嵌套
cartesian 英文笛卡尔积
for i in [1,2,3]:
for j in [\'a\',\'b\',\'c\',\'d\']:
print(i,j)
- hosts: all
tasks:
- name: debug
debug:
msg: " item "
with_nested:
- [1,2,3]
- [\'a\',\'b\',\'c\',\'d\']
- hosts: all
tasks:
- name: debug
debug:
msg: " item "
with_cartesian:
- [1,2,3]
- [\'a\',\'b\',\'c\',\'d\']
以上是关于循环控制语句 之 with_nested的主要内容,如果未能解决你的问题,请参考以下文章