/
operator is “true division”, with floating points. this is changed from Python 2 (like you used in 15-112), where it did integer division, which floors the result toward negative infinity. if you want to do floored int division in Python 3, you need to use the //
operator instead.