Why is unpacking of tuples only allowed when there's 1 tupple ?

2009-08-15 Thread Stef Mientki
hello, I'm not sure if unpacking is the right term but if I have a tuple of 2 arrays, I can either call a function with: Space_State = tf2ss ( filt[0], filt[1] ) or with Space_State = tf2ss ( *filt ) Now if I've to call a function with more parameters, why can't I use

Re: Why is unpacking of tuples only allowed when there's 1 tupple ?

2009-08-15 Thread Jan Kaliszewski
Dnia 15-08-2009 o 22:50:39 Stef Mientki stef.mien...@gmail.com napisał(a): hello, I'm not sure if unpacking is the right term but if I have a tuple of 2 arrays, I can either call a function with: Space_State = tf2ss ( filt[0], filt[1] ) or with Space_State = tf2ss (

Re: Why is unpacking of tuples only allowed when there's 1 tupple ?

2009-08-15 Thread Stef Mientki
thanks Jan, for the clear explanation. cheers, Stef Jan Kaliszewski wrote: Dnia 15-08-2009 o 22:50:39 Stef Mientki stef.mien...@gmail.com napisał(a): hello, I'm not sure if unpacking is the right term but if I have a tuple of 2 arrays, I can either call a function with: