# lecture 02, Hans Fangohr, Intro Comp Science def slength1(s): """Returns a string describing the length of the sequence s""" if len(s) > 10: ans = 'very long' else: ans = 'normal' # if statement finished return ans