davidsands wrote:


The tuple() type-conversion function will do what you need:

   print fmts[0] % tuple(bigList[0])
   print fmts[1] % tuple(bigList[1])
   print fmts[2] % tuple(bigList[2])


I never thought of the tuple type conversion - that looks promising. Thanks for that!

R.
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to