>>> prefix_strings = 'they', 'he'
>>> s = "they're bill's friends from the UK"
>>> p = "he is bill's friends from the UK"
>>> s.startswith(prefix_strings), p.startswith(prefix_strings)
Options:
Explanation
Correct answer is : A
str.startswith(prefix[, start[, end]]) Return True if string starts with the prefix, otherwise return False. prefix can also be a tuple of prefixes to look for
Comment here: