Which of these statements are true about lists and tuples?

Lists can store multiple values of any typeWe enclose tuples in parenthesesLists can't be changedTuples can't contain bool-type values

Awesome! We enclose lists in brackets and tuples in parentheses. Lists can store multiple values of any type and so do tuples, but the latter can't be changed.

Uh oh! We enclose lists in brackets and tuples in parentheses. Lists can store multiple values of any type and so do tuples, but the latter can't be changed.