I have three arrays:
arr1 = ['name1', 'name2', ...]
arr2 = ['192.168.1.1', '192.168.1.2', ...]
arr3 = ['port1', 'port2', ...]
I would like to merge them in one like this:
final_arr = ['name1', '192.168.1.1', 'port1', 'name2', '192.168.1.2', 'port2', ...]
I tried with dict.fromkeys() but doesn't seem to be the answer ...
If you had any idea?
Thanks!!