when i run this function in pycharm, The result value during the function is not given and the corresponding error is output before it is terminated. The error is that Process finished with exit code -1073740791 (0xC0000409). i did googling already, but i can't find enough solution. please teach me how to solve this problem.
def determineBiddingPrice(t, n, bid_t, w, h, k):
encode = LabelEncoder()
rank = determineRank(t, n, bid_t, w, h, k)
if rank < n:
while rank < n:
rank = determineRank(t, n, bid_t, w, h, k)
bid_t -= 10
print(bid_t)
print(rank)
elif rank > n:
while rank > n:
bid_t += 10
rank = determineRank(t, n, bid_t, w, h, k)
print(bid_t)
print(rank)
else:
return bid_t
User contributions licensed under CC BY-SA 3.0