想要找出prices列表中的最大值,阅读下面代码,横线处应该补充的正确代码是()prices =[61,80,25,89,36,41,73,57,10]
m =0 for p in prices: if _: m =p print(m)
p<m
p>m
p ==m
p!=m