"Python Collections (2016, retired 2019)" was retired on January 6, 2020.
Quiz Question 1 of 4
Consider the following code
learning_todos = [
"Go to local Python meetup",
"Put study times on my calendar",
"Check out what Python e-books are available from my library",
"Research job openings for keywords",
]
Assuming that I want to add a todo to the very beginning of this ordered list. I want it as my first todo.
Choose the correct answer that holds the values that complete missing fields:
learning_todos.______(__, "Finish the Introducing Lists course")
Choose the correct answer below: