Write a function that gets two parameters (arguments) from t…
Write a function that gets two parameters (arguments) from the user and if both of them are integers, it returns the result of the first parameter to the power second parameter (X**Y). If both parameters are strings, the function concatenates them (‘X’+’Y’) and returns the result, otherwise, it returns an error message and gets two new inputs.
Read Details