Question: use python3 Define a function called quiz3 that takes two strings as inputs. If the two strings are each only letter (capital or otherwise), return
Define a function called quiz3 that takes two strings as inputs. If the two strings are each only letter (capital or otherwise), return the concatenation of the two strings. If only one string has numeric or special characters, return only that string with only its alpha characters. If both strings have numeric or alpha characters, return False. quiz3("Ricky","Bobby") should return "RickyBobby" quiz3("Ricky","Bobby45") should return "Bobby
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
