A new to Python question

M.E.Farmer mefjr75 at hotmail.com
Sat May 14 13:51:58 EDT 2005


(x,y,dotp,sumx,maxv) = abc(x,y,dotp,sumx,maxv)
This will only create a tuple in memory that has no name to reference
it by!
How would you access the returned value?
If you want a tuple you need to assign all the return vales to a single
name.
mytup = abc(x,y,dotp,sumx,maxv)
M.E.Farmer




More information about the Python-list mailing list