So I'm completely having a brain fart but I'm attempting to call a function that returns its own updated input in a for loop that has to run 30 times. I have the for loop part down I'm just not sure how to call the function correctly.
def miniopoloy_turn(state, cash)
return state, cash
so the function returns its updated state and cash values after running, but how would I then run the function again with the updated output inside a for loop?