Correct answer is : B
str.endswith(suffix[, start[, end]]) Return True if the string ends with the specified suffix, otherwise return False. suffix can also be a tuple of suffixes to look for
"e" string ends with "UK" and suffix_strings contain " UK" and "IND". So e.endswith(suffix_strings) prints True
"p" string does not end with any of " UK" and "IND". so p.endswith(suffix_strings) prints false
Comment here: