Erreur off-by un dans Python

# This is one of the most common errors when using "for" loops
# Programmers index starts from 0
# But the common use is to start lists of numbers with 1
# So programmers must be careful when indexing due to this mismatch and it is the main reson to off-by-one error
Rajitha Amarasinghe