def test_chars(self): assert char_count("hello") == 5 assert char_count("hello world") == 10
def test_empty_imput(self): assert char_count("") == 0