Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have the following python code snippet:

LL=[]
for i in range(3):
    LL.append("a"+str(i))
print LL

The output comes as:

['a0', 'a1', 'a2']

How can I print as (using print LL):

[a0, a1, a2]

i.e. without the quote mark? If I use the following code:

print "[",
for i in range (len(LL)-1):
    print LL[i] + ", ",
print LL[i+1]+"]"

This prints [a0, a1, a2]

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
453 views
Welcome To Ask or Share your Answers For Others

1 Answer

You are printing the repr format of the list. Use join and format instead

>>> print "[{}]".format(', '.join(LL))
[a0, a1, a2]

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...