已知列表lis被赋值如下:
lis = [6, 5, 1, 5, 8, 1]
下面列表操作函数的返回结果,错误的是( )。
max(lis)的返回结果是:8
min(lis)的返回结果是:1
lis.count(5)的返回结果是:1
sum(lis)的返回结果是:26