For the following function, what are the best
types for the parameters (can be used for all parameters)? (best =
will not cause errors, will compute what is intended.)
For example, if you select "string" that means that a call with
3 string values—add_and_mult("Hi", "bye", "llama") is a great
choice.
def add_and_mult(num1, num2, num3):
sub_val1 = num1 * 60
sub_val2 = (sub_val1 + num2) * 60
answer = sub_val2 + num3
print("Wow! that's " + str(answer))
A. int
B. float...