Question: PYTHON PLEASE line File Zipython-input-44-df0654955301> if h==0:#if h is 0 then return string IndentationError: unexpected indent [49]: #Question 4 def lowercase(str_list): for x in str_list:
line File Zipython-input-44-df0654955301> if h==0:#if h is 0 then return string IndentationError: unexpected indent [49]: #Question 4 def lowercase(str_list): for x in str_list: if (x1=None) and (len(x)>0) and (x[0] in "abcdefghijklmnopqrstuvwxyz"): return True return false print(lowercase(( "ABN", "Hello", "hi 1)) should print True print(lowercase ("Month", "Week"])) + should print False print(lowercase(["123", "ABC" 1)) should print False False False False In [ ]: 4. Write a function lowercase that has one argument: str list that is a list of non-empty strings. If at least one string in the list starts with a lower case letter, then the function should return the value True. If every string in the list does not start with a lower case letter, then the function should return the value False. (1%]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
