执行下面Python代码后,输出的结果是?( )
my_tuple = (1, 2, 3, 3, 2, 1)
print(my_tuple.index(2))
出错,因为index方法需要两个参数
4
2
1