如下: >>> all(()) True >>> all([]) True >>> all(1,2,3) Traceback (most recent call last):File "<stdin>", line 1, in <module> TypeError: all() ta……