• muratcal89's Activity

Liked mission "First Word"
Find the first word in a string
Find the first word in a string
Liked mission "The Most Numbers"
Determine the difference between the smallest and biggest number.
Liked a comment created by Phil15 for forum post "array index failure but how"
`range(start, stop, step)`, the first element would be `start`, then `start + step`, `start + step *
Commented a forum post "array index failure but how" created by muratcal89
Thanks Phil, somehow the opposite remained in my mind. Of course it is not returning the last elemen
Liked a comment created by tom-tom_f993b3abc4814d4cb5476e for forum post "array index failure but how"
As you marked this post as resolved, I assume you've managed to solve this task.
Anyway, `list(range
Commented a forum post "array index failure but how" created by muratcal89
Why not working tom-tom? I really do not understand, pardon my knowledge please, I am new on this. W
Commented a forum post "array index failure but how" created by muratcal89
Thanks kurosawa, but doesn't it start from 0 and goes to 5? It makes 6? Am I thinking wrong?
Commented a forum post "array index failure but how" created by muratcal89
Thanks tom-tom, but doesn't it start from 0 and goes to 5? It makes 6? Am I thinking wrong?
Liked a comment created by tom-tom_f993b3abc4814d4cb5476e for forum post "array index failure but how"
Hi! Look at the **stop** parameter for [range](https://docs.python.org/3/library/stdtypes.html#range
Liked a comment created by kurosawa4434 for forum post "array index failure but how"
Hi muratcal89.

You don't need to subtract 1:

    for a in range(0,len(array)-1, 2):
              
Created a forum post "array index failure but how"
def checkio(array): """ sums even-indexes elements and multiply at the last """