str.startswith
startswith(prefix[, start[, end]])
Return True if string starts with the prefix, otherwise return
False. prefix can also be a tuple of suffixes to look for. With
optional start, test string beginning at that position. With optional
end, stop comparing string at that position.
Changed in version 2.5: Accept tuples as prefix.