想要求出只含正整数的列表L中第二大的数,应该在横线填入?
L=[3,5,1,4,7,6,9] a,b=-1,-1 for x in L: if x > a: _____ elif x> b: b=x print(b)
a, b= b,x
a=x
a, b=x,a
b=x