Fencer <no.spam at plz.ok> writes: > Hi, I need a boolean b to be true if the variable n is not None and > not an empty list, otherwise b should be false.... > It can be assumed that n is always None or a list that might be empty b = bool(n)