下列程序的输出结果是? (注意: 0 后面是两个单引号' ' , 并非双引号)( )
ls=[0, ' ' , {} , None, () , [], ' empty' ]
print(len(ls))
2
3
6
7