Please how does this code snippet work? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Please how does this code snippet work?

a = [0,1,2,3,] for a[-1] in a: print(a[-1]) It outputs 0,1,2,2 but I don't understand why. I thought it should output an Error but I was wrong.

10th Sep 2020, 11:09 AM
Lekan Adenusi
Lekan Adenusi - avatar
3 Answers
+ 3
a[-1] means last element in the list. for i in a is storing each element of a in temporary variable i when looping. for a[-1] is storing each element of a in the last slot of a. So the last element has the value of second last element when the loop reaches the last slot. https://code.sololearn.com/cjTMp4kCULX8/?ref=app This quiz is for brain teasing only. This is something you will avoid doing in actual programming.
10th Sep 2020, 12:55 PM
Gordon
Gordon - avatar
+ 2
This seems like magic to me too at first glance. After playing around, I think the real magic is the line: for a[-1] in a: This line loop through the value in a array, assign each value to a[-1] in each loop, and print out the a[-1] Breakdown : a[-1] = a[0] = 0 a[-1] = a[1] = 1 a[-1] = a[2] = 2 a[-1] = a[-1] = 2
10th Sep 2020, 12:20 PM
Heng Jun Xi
Heng Jun Xi - avatar
+ 1
I understand better now. Thank you both for your answers!
10th Sep 2020, 3:40 PM
Lekan Adenusi
Lekan Adenusi - avatar