单选题

下列Python序列解包,正确的输出是?( )

fruit=['apple','peach','orange']
weight=[65,77,68]
for i,j in zip(fruit,weight):
     print(i,j,end=' ')


A

'apple','peach','orange',65,77,68

B

apple peach orange 65 77 68

C

apple 65 peach 77 orange 68

D

apple 65 , peach 77 , orange 68

赣ICP备20007335号-2