In data manipulation with pandas, why would you use a list instead of a tuple to subset columns?
A) Tuples are immutable, which prevents modifications, while lists allow dynamic changes.
B) Tuples do not support indexing, while lists do, making them unsuitable for column selection.
C) Lists are faster for data processing operations compared to tuples.
D) Tuples can contain only a single element, making them unsuitable for multiple column selection.