I have a list... say for example

list = ["hello", "there"]

and i have a function

def printout(firstword, secondword):
   print firstword
   print secondword

and i want to call

the function like this

printout(list)

but that doesnt work because it takes the list as an argument.

How can I get around this problem?
_______________________________________________
Tutor maillist  -  [email protected]
http://mail.python.org/mailman/listinfo/tutor

Reply via email to