I want to share/divide a specific amount to the members of two Python lists. The members of list1 will have double share each, while the members of list2 will have single share
You should use zip() built-in function.
for i, j in zip(list1, list2): print(i, (reminder/9)*2) print(j, (reminder/9)*1)