Pertunjukan Kosong Non Python

# Correct:
if not seq:
if seq:

# Wrong:
if len(seq):
if not len(seq):
Nasty Newt