The range(1, 11) function acts strangely from a non-programmer's point of view - it does not return the last specified number (11 in this example):
>>> list(range(1, 11))
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
Is there any way we can change the way this function works so that it returns a result that includes the last value? Let's say, write a petition to Python developers?
Do you think it makes sense to change the way this function works or leave as it is?