Computer Science, asked by dubuissonsamuel, 9 months ago

The elements of a list are immutable.
Select one:
True
False

Answers

Answered by khaisen
2

Answer:

False

Explanation:

because list are mutable, except it has some special indentication within. in other way if the list is not formated to be an immutable object, list are mutable.

Answered by brainlysme13
0

False. The elements of a list are mutable.

Lists:

  • Multiple elements can be kept in a single variable by using lists.
  • One of the four built-in data types in Python for storing data collections is the list.
  • The other three built-in data types in Python are the tuple, set, and dictionary, each of which has a unique purpose.
  • Lists can be modified, unlike strings.
  • This means that by directly referencing it as part of the assignment statement, we can alter an item in a list.
  • We can update one of the list elements by using the indexing operator (square brackets) on the assignment's left side.

Hence, the correct answer is False.

Read more on Brainly.in:

1. https://brainly.in/question/39403826

2. https://brainly.in/question/22629170

#SPJ2

Similar questions