Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
No loops solution in Clear category for Non Empty Lines by igharok
def non_empty_lines(str_text):
return len(str_text.replace(' ', '').replace('\n\n', '\n').strip('\n').splitlines())
April 29, 2020
Comments: