Contact: aviboots(AT)netvision.net.il
39,933 questions
51,870 answers
573 users
import numpy as np lst1 = [14, 17, 19, 30] lst2 = [2, 3, 4, 5] quotient, remainder = np.divmod(lst1, lst2) print(quotient) print(remainder) print(list(zip(quotient, remainder))) ''' run: [7 5 4 6] [0 2 3 0] [(7, 0), (5, 2), (4, 3), (6, 0)] '''