[Tutor] Python docs- makes the learning harder sometimes

Tony Cappellini tony@tcapp.com
Mon Jan 6 02:31:06 2003


I've got a book which refers to some really useful string functions like.

startswith()
endswith()

as in
s="Hello Python"
s.startswith("He")
s.endswith("on",6)

where each function has 2 parameters,
however, I don't understand why these functions are not in the Global 
Module Index

Arggggghh !