Hacker News new | ask | show | jobs
by __s 79 days ago

    def remove_falsey_values(l):
          l[:] = (x for x in l if x)