Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
easy one solution in Clear category for Non Empty Lines by kalauroma7997
non_empty_lines = lambda text: sum(l.strip() != '' for l in text.splitlines())
Sept. 13, 2021