the best and safest solution would be using the python built-in function max() to calculate the chunk size. Especially effective if the denominator is 0, or n<processes. Adding +1 does balance that but using max() would be more reliable as sometime +1 would lead to uneven distribution when n is evenly divisible by processes.
max(1, n//processes)