movies = [
"The Holy Grail", 1975, "Terry Jones & Terry Gilliam", 91,
["Graham Chapman",
["Michael Palin", "John Cleese", "Terry Gilliam", "Eric Idle", "Terry Jones"]]]
print(movies[4][1][3] = Eric Idle
Could Someone please explain how it counts from the outer loops through the inner loops With the number 4, 1, & 3? Once the first 4 lands on "Graham Chapman", does Graham then count from Graham starting at 0? Thanks for any and all replies.