a=[["小米,299"],["华为,3999"],["联想,200"]]

怎么打印输出该列表中的所有元素并换行,请教一下各位流程是什么样的

for i in range(0,len(a))
print(a[i][0])
print(a[i][1])
print("\n")