if i == 17: v += -680 s += 28if i == 34: v += -680 s += 28#etc
I want the if statement to happen everytime i increases +17. How can I turn this into one if statement instead of countless?
if i == 17: v += -680 s += 28if i == 34: v += -680 s += 28#etc
I want the if statement to happen everytime i increases +17. How can I turn this into one if statement instead of countless?