Computer Science, asked by divyanshi76921, 5 hours ago

is The elements of a list are immutable.

Answers

Answered by olivia200447
1

Explanation:

Many types in Python are immutable. Integers, floats, strings, and (as you'll learn later in this course) tuples are all immutable. Once one of these objects is created, it can't be modified, unless you reassign the object to a new value. The list is a data type that is mutable.

Similar questions