It is true that lists are dynamic data structures in which items are added and removed from them.
Lists are considered dynamic data structures because during the run-time size changes. Dynamic data structures are those data structures in computer programming, that change sizes during runtime. The values or items in the data structures can be either statics or dynamics. Static values cannot be changed while the dynamics values in the data structure can be changed.
The main benefit of a dynamic data structure is that you don't need to worry about the size of the data structure. Because the dynamics data structures change their sizes during run time.
For example, lists are dynamic data structures. You can add or remove the items in it during runtime. Therefore, the given statement in the question is true.
You can learn more about data strucutures at
https://brainly.com/question/14219377
#SPJ4