(An Unofficial) Python Tutorial Wiki

putting the community back in "maintained by the community"

4vm8

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 %%%%%%%