Tagged Questions

0
votes
1answer
60 views

Is there something special in range(start, stop, step).count(item)

I just discovered the py3k range method count(): counts = range(start, stop, step).count(item) Is not the result of the method always 1 or 0 ?. It seems to me a bit overkilling to call the method ...