Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

values = [2,3,4]
for v in values:
    values.append([v,255,255])

Why do the statements above never end? I make a mistake in my code. However, I find it will never stop when I execute the code above.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
662 views
Welcome To Ask or Share your Answers For Others

1 Answer

You iterate over an array which you grow as you iterate over it.

First values is [2,3,4] then after the first iteration, values is [2, 3, 4, [2, 255, 255]] then [2, 3, 4, [2, 255, 255], [3, 255, 255]] etc. You should print along the iteration to understand it better.

The reason is append actually changes the very object you are iterating over. You could try

values = [2,3,4]
new_values = []
for v in values:
    new_values.append([v,255,255])

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...