Re: [Numpy-discussion] Variable String Format

2007-03-09 Thread Alan Isaac
lechtlr wrote: >I would very much appreciate, if someone can give suggestions to implement > a loop to generate a string in the following format. > Variables with assigned values are given in A: > A = {a1:2.0, a2:4.0,………,an:5.0} > I want to transform what is in the dictionary in

Re: [Numpy-discussion] Variable String Format

2007-03-09 Thread Pierre GM
On Friday 09 March 2007 14:41:23 lechtlr wrote: >I would very much appreciate, if someone can give suggestions to > implement a loop to generate a string in the following format. Variables > with assigned values are given in A: > A = {a1:2.0, a2:4.0,………,an:5.0} > I want to transform w

Re: [Numpy-discussion] Variable String Format

2007-03-09 Thread Bill Baxter
str(A)[1:-1] ? --bb On 3/10/07, lechtlr <[EMAIL PROTECTED]> wrote: I would very much appreciate, if someone can give suggestions to implement a loop to generate a string in the following format. Variables with assigned values are given in A: A = {a1:2.0, a2:4.0,………,an:5.0} I want to transf

[Numpy-discussion] Variable String Format

2007-03-09 Thread lechtlr
I would very much appreciate, if someone can give suggestions to implement a loop to generate a string in the following format. Variables with assigned values are given in A: A = {a1:2.0, a2:4.0,………,an:5.0} I want to transform what is in the dictionary into a string in the follo