How would I go about printing the values from three lists, so that each line contains elements from each list? For instance, I can print the values from the lists using:
msg:
“Memory: {{ memoryLocator.stdout_lines }}”
“Memory: {{ memoryPN.stdout_lines }}”
“Memory: {{ memorySN.stdout_lines }}”
This would print the values like:
DIMM1
DIMM2
DIMM3
G55555-111
G55555-111
G55555-111
999000123
999000440
999000554
However, what I would like to do is print the lists so each line of the output would combine
Thanks, that worked well. I am writing this information to a file using lineinfile. How would I strip off the brackets, quotes and commas?
[‘DIMM1’, ‘G55555-111’, ‘999000123’]