python的len函数

2023-01-31 01:01:21 python 函数 LEN

python的len函数:

Python len() 方法返回对象(字符、列表、元组等)长度或项目个数。

如:

ret = os.popen('netstat -ntpl | grep apache2').readlines()
if len(ret) < 2:

if len(ret) == 0:

相关文章