Tagged Questions
A type returned by the built-in function range in Python 3.x
0
votes
1answer
56 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 ...