给定列表 nums=[1,2,3,4,5,6],以下哪个选项返回 True? ( )
not all(nums)
any(nums)
not (all(nums) and any(nums))
not (all(nums) or any(nums))