Wie Sie alle Nullwerte in Array Python loswerden

mylist = [1, 2, 3, '', 4]
mylist = [i for i in mylist if i != '']
Hurt Herring