执行下面Python代码后,输出的结果是?( )
1 t1 = ("python", "c++", "scratch") 2 t2 = tuple(i for i in t1[::-1]) 3 print(t2)