When using random.randint() in this form, I can't get integer division to work:
(random.randint(-40, 215) - -40) // (215 - -40)
This returns 0, however something like this returns correctly:
random.randint(3,5) - 2 // 2
How do I format the first equation correctly to get a rounded integer instead of defaulting to 0?