4vm8
last updated 2 years ago by anonymous #
In the example for "len()", please avoid the horribly long word -- I know it is cool, but it'd be better if the reader can actually count the number of letters in the string herself and correlate it with the value returned by len().
%%%%%%% The built-in function len() returns the length of a string:
s = 'supercalifragilisticexpialidocious' len(s) 34 %%%%%%%
