what is true about tuples? (select two answers.) a tuple can be expanded using the .append() method. the for…

what is true about tuples? (select two answers.) a tuple can be expanded using the .append() method. the for loop can be used to iterate through a tuple. a one - element tuple can be coded as (1,) or 1,. tuples can be subtracted using the - operator.
Answer
Answer:
B. The for loop can be used to iterate through a tuple., C. A one - element tuple can be coded as (1,) or 1,
Brief Explanations:
Tuples are immutable, so no append method. There's no subtraction operator for tuples. for loop can iterate over tuple elements, and a one - element tuple needs a trailing comma for proper syntax.