How to divide two lists and get quotient and remainder in Python

1 Answer

0 votes
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)]

'''

 



answered Feb 19, 2023 by avibootz
...