Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started