C0200 consider-using-enumerateΒΆ

Message

'Consider using enumerate instead of iterating with range and len'

Description

Emitted when code that iterates with range and len is encountered. Such code can be simplified by using the enumerate builtin.