I want to use multitasking in a while loop and a for loop in python to make the code faster, I have 300 coins in 50 lists and all the lists in one list.
while True:
for i in range(len(usdtLists)):
Thread(target= stopping_volume, args= (usdtLists[i], i)).start()
but I always get this error: unsupported operand type(s) for -: 'NoneType' and 'relativedelta'