Question: Design a function called get_longer that will take as arguments two strings and will return the string that is the longer of the two. If
Design a function called get_longer that will take as arguments two strings and will return the string that is the longer of the two. If the strings are both the same length, the string that is the first argument is returned.
You will want to use Python's built-in len function to get the length of each string.
If the function is called as: get_longer ('hey there', 'hello') it should return the value: 'hey there'
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
