Re: printing dictionary and tuple

2008-03-19 Thread Gabriel Genellina
En Wed, 19 Mar 2008 08:16:52 -0300, Beema shafreen <[EMAIL PROTECTED]> escribió: > i am trying to print the dictionary values and tuple in a same line as > below > > print "\t".join(dict[a].values())+'\t'+"\t".join(b) > > Error I get is the TypeError, > since i have misisng values in the di

printing dictionary and tuple

2008-03-19 Thread Beema shafreen
Hi everbody i am trying to print the dictionary values and tuple in a same line as below print "\t".join(dict[a].values())+'\t'+"\t".join(b) Error I get is the TypeError, since i have misisng values in the dictionary. if i use exception i will miss those how should i print the data without mi