Question: help me python Given a list of strings, return true if each string's size is equal or greater than the one before, otherwise return false.
help me python
Given a list of strings, return true if each string's size is equal or greater than the one before, otherwise return false. The array will have 2 or more members.

returns false since string Jeremy comes before Mary and has more letters than Mary
Write the code for the function, you may use system functions such as len( x ).
def stringsIncreasing (names) :
Example 1: If the names list contains "Jay" "Mary" "John" "Jeremy" then the function call: stringslncreasing (names) returns true Example 2: If the names array contains "Jay" "Jeremy" "Mary" then the function call: stringslncreasing (names)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
