Re: [Tutor] Question about formating string with dictionary

2007-04-26 Thread John Fouhy
On 27/04/07, Shuai Jiang (Runiteking1) <[EMAIL PROTECTED]> wrote: > Hello everyone, > > The program that I am working on right now have a template for string > formatting. > My question is that is it possible to use multiple dictionary to format the > string. > > For example > x = {'foo':1234, 'bar

[Tutor] Question about formating string with dictionary

2007-04-26 Thread Shuai Jiang (Runiteking1)
Hello everyone, The program that I am working on right now have a template for string formatting. My question is that is it possible to use multiple dictionary to format the string. For example x = {'foo':1234, 'bar': 5678} y = {'spam':'hello','cheese':'good-bye'} is there any way to use his ps