How do I assign multiple variables to a single argument in a function in python?
I am trying to make a program where it takes a trinomial and factors it, if possible. Whenever the user inputs A, B, and C, the trinomial is supposed to be taken through the factor(product, summation) function, but I can’t seem to figure out how to assign A and C to the product arg and B to the summation.