problem with lists??

Posted by kaushik on Stack Overflow See other posts from Stack Overflow or by kaushik
Published on 2010-05-27T09:04:51Z Indexed on 2010/05/27 9:11 UTC
Read the original article Hit count: 111

Filed under:
|
j=0
x=[]
for j in range(9):
  x=x+ [j]

this will output

[1,2,3,4,5,6,7,8,9]

i wanted it as

['1','2','3'...

how can I get it?

© Stack Overflow or respective owner

Related posts about python

Related posts about beginner