IDNLearn.com is designed to help you find accurate answers with ease. Discover reliable answers to your questions with our extensive database of expert knowledge.
Answer:
def find_longest_string(string_list):
if string_list==[]:
return ""
else:
return max(string_list,key=len)
Explanation: