On Wed, 18 Apr 2018 12:37:29 -0700, TUA wrote:

> My intention is to implement a max. length of 8 for an input string. The
> above works well in all other respects, but does allow for strings that
> are too long.

if len(input_string) > 8:
    raise ValueError('string is too long')



-- 
Steve

-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to