Multiple choice technology programming languages

Python lists are mutable

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Python lists are mutable, meaning you can modify them after creation by appending, removing, or changing elements. This is different from tuples, which are immutable. You can change list elements using indexing (x[0] = 5), add elements with append() or extend(), or delete them with del or remove().