I want to write a function that accepts a parameter which can be either a sequence or a single value. The type of value is str, int, etc., but I don\'t want
IMHO, the python way is to pass the list as *list. As in:
myfunc(item) myfunc(*items)