On 01/24/10 19:17, David Hutto wrote:
> Thanks
> for the solutions and the quick responses. I just removed the variable
> and used print, I thought they would be considered the same whether as 
> a variable, or as a direct line, guess not.
> 

what is equivalent:
print (a, b, c)

and
x = a, b, c
print x


both construct a tuple and prints a,b,c as tuple

_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to