def test_space(): assert not is_punct(' ')
def test_comma(): assert is_punct(',')
def test_letter(): assert not is_punct('a')