Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
generator expression solution in Clear category for Non Empty Lines by Sim0000
def non_empty_lines(text: str) -> int:
return sum(line != '' for line in text.replace(' ', '').split('\n'))
if __name__ == '__main__':
print("Example:")
print(non_empty_lines('one simple line\n'))
# These "asserts" are used for self-checking and not for an auto-testing
assert non_empty_lines('one simple line\n') == 1
assert non_empty_lines('') == 0
assert non_empty_lines('\nonly one line\n ') == 1
assert non_empty_lines('''
Lorem ipsum dolor sit amet,
consectetur adipiscing elit
Nam odio nisi, aliquam
''') == 3
print("Coding complete? Click 'Check' to earn cool rewards!")
June 4, 2020