IDNLearn.com provides a collaborative environment for finding and sharing answers. Ask any question and get a thorough, accurate answer from our community of experienced professionals.
Answer:
def find_longest_string(string_list):
if string_list==[]:
return ""
else:
return max(string_list,key=len)
Explanation: