Sep-10-2018, 01:12 PM
i tried converting to tuple, does not work still
Just to explain further,
arg[0] = "10"
arg[1] = "20"
arg[2] = "30"
when i pass these values individually to my method, the function works fine
Ex : Method(arg[0], arg[1], arg[2])
But when is send the list as argument, i see "Unhashable type: List"
Ex: Method(arg)
Just to explain further,
arg[0] = "10"
arg[1] = "20"
arg[2] = "30"
when i pass these values individually to my method, the function works fine
Ex : Method(arg[0], arg[1], arg[2])
But when is send the list as argument, i see "Unhashable type: List"
Ex: Method(arg)