Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
Duplicate? stackoverflow.com/questions/2823211/… – gimel May 17 '10 at 7:59
7  
Shouldn`t it be range(1,10)? – stephan May 17 '10 at 7:59
Your question is unclear. What is it the output you want to get? string = "string10"? string = "string1string2string3string4string5string6string7string8string9string10"? Ten different variables? – badp May 17 '10 at 8:11
1  
@stephan: +1, but it should be range(1,11) :) – Tim Pietzcker May 17 '10 at 8:25
2  
@Tim: maybe even range(11) looking at the comment... – stephan May 17 '10 at 8:32
show 1 more comment

4 Answers

up vote 45 down vote accepted
for i in range (1,10):
    string="string"+str(i)

To get string0, string1 ..... string10, you could do like

>>> ["string"+str(i) for i in range(11)]
['string0', 'string1', 'string2', 'string3', 'string4', 'string5', 'string6', 'string7', 'string8', 'string9', 'string10']
share|improve this answer
Am I missing something to get a downvote? – YOU May 17 '10 at 8:52
1  
Backticks are all sorts of silly. – habnabit May 17 '10 at 8:58
It's still worth mentioning that backticks are equivalent to repr(), not str(). – Bastien Léonard May 17 '10 at 9:06
1  
Bastien, Thanks for the note, but I think I don't put it back again. – YOU May 17 '10 at 9:28
1  
Mmh, I tried to remove my vote (just a test), and then vote again; the vote is suppressed but I can't upvote it anymore... ("Your vote is now locked in unless this answer is edited") – Bastien Léonard May 17 '10 at 9:56
show 2 more comments
string = 'string%d' % (i,)
share|improve this answer
you only need to use a list for formatting when you have more than one format specifier, otherwise, it's ugly :) – Longpoke May 17 '10 at 17:50
1  
That's not a list, that's a tuple. And you also need it if the single item to be formatted is itself a tuple. – Ignacio Vazquez-Abrams May 17 '10 at 20:48
for i in range(11):
    string = "string{0}".format(i)

What you did (range[1,10]) is

  • a TypeError since brackets denote an index (a[3]) or a slice (a[3:5]) of a list,
  • a SyntaxError since [1,10] is invalid, and
  • a double off-by-one error since range(1,10) is [1, 2, 3, 4, 5, 6, 7, 8, 9], and you seem to want [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

And string = "string" + i is a TypeError since you can't add an integer to a string (unlike JavaScript).

Look at the documentation for Python's new string formatting method, it is very powerful.

share|improve this answer
(Correction: If you do range={(1,10): "foo"}, then range[1,10] is in fact a syntactically valid expression.) – Tim Pietzcker Nov 17 '12 at 11:10
for i in range[1,10]: string = "string" + str(i)

str(i) castsconverts the integer into a string.

share|improve this answer
1  
str(i) is conversion. Python doesn't have casting. – habnabit May 17 '10 at 8:57
Thanks Aaron. Totally right. – Rizwan Kassim May 17 '10 at 17:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.