You will need to do some type checks. It all depends on what you want to accept.
Generally, you can wrap something in the list constructor and get a list from it.
def foo(x):
x = list(x)
But the conversion depends entirely on list. For example: list({1: 2}) will not give you [2] but [1].
So if you want to protect the user from surprises you should perhaps check if the input is a single integer or a list.
You can check this with isinstance:
>>> isinstance("hej", int)
False
>>> isinstance("hej", (int, list))
False
>>> isinstance([1,2,3], (int, list))
True
>>> isinstance(1, (int, list))
True
Another problem with iterables, you cannot guarantee every member is of the same type, for example:
[1, 'hello', (2.5,)]
I would just try converting each item to a number, if not possible, throw your hands up in the air and whine to the user.