Re: another newbie question: why should you use "*args" ?



stef wrote:

# method 2
def chunk_plot(self, list):
for i in range ( len(list) ):
.... do something


And one note more. Just to be more pythonic you shouldn't use form range(len(blabla)). Instead use:

for i in list:
.....blabla...


--
Sincerely,
Eugene Antimirov
PortaOne, Inc., SIP Support Engineer
support@xxxxxxxxxxxx

.