I want to create string using integer appended to it, in a for loop.
# Create string0, string1 ..... string10
for i in range [1,10]:
string="string"+i
But It has returned an error because i is not a string but an integer.
How I can do it?
|
I want to create string using integer appended to it, in a for loop.
But It has returned an error because How I can do it? |
||||
| show 1 more comment |
To get
|
|||||||||||||||||
|
|
|||||||
|
What you did (
And Look at the documentation for Python's new string formatting method, it is very powerful. |
||||
|
str(i) |
|||||||
|
range(1,10)? – stephan May 17 '10 at 7:59string = "string10"?string = "string1string2string3string4string5string6string7string8string9string10"? Ten different variables? – badp May 17 '10 at 8:11range(1,11):) – Tim Pietzcker May 17 '10 at 8:25range(11)looking at the comment... – stephan May 17 '10 at 8:32