有如下Python程序,请问此程序的执行结果是?( )
tup1 = ('Google', 'Firefox','UC','QQ','360') tup1[1] ="火狐" print(tup1[1])
Firefox
火狐
Google
程序出现错误