if(i-words < 0):
start_point = 0
else:
start_point = i - words
Or is this the easiest way using min/max? This is for lists splicing.
I want start_point to always be 0 or above.
|
|
|
Better is to make the limiting more obvious
This way, anyone reading can see that you're limiting a value. Using any form of So, use |
|||||||
|
|
|
How about
or
or even better, the clearest way:
As Mihai says in his comment, the last way is not only clearer to read and write, but evaluates the value only once, which could be important if it's a function call. |
|||||||||||
|