Matthew Wilson wrote: > I want to verify that three parameters can all be converted into > integers, but I don't want to modify the parameters themselves.
To do what you need you can try this:
def f(a, b, c):
map(int, [a, b, c])
...code...
Bye,
bearophile
--
http://mail.python.org/mailman/listinfo/python-list
