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

Categories

0 votes
448 views
in Technique[技术] by (71.8m points)

python - Printing list shows single quote mark

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

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

1 Answer

0 votes
by (71.8m points)

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

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...