如果使用 islower 值较低,请检查 ansible
Check in ansible if value is lower with islower
谁能举个例子来检查变量的值是否是小写的 islower?
谢谢
使用 islower 函数:
- name: echo test
debug:
msg: |
is low lower?: {{ low.islower() }}
is notlow lower?: {{ notlow.islower() }}
vars:
low: er
notlow: Er
谁能举个例子来检查变量的值是否是小写的 islower?
谢谢
使用 islower 函数:
- name: echo test
debug:
msg: |
is low lower?: {{ low.islower() }}
is notlow lower?: {{ notlow.islower() }}
vars:
low: er
notlow: Er