下列Python序列解包,正确的输出是?( )
fruit=['apple','peach','orange'] weight=[65,77,68] for i,j in zip(fruit,weight): print(i,j,end=' ')
'apple','peach','orange',65,77,68
apple peach orange 65 77 68
apple 65 peach 77 orange 68
apple 65 , peach 77 , orange 68