如何打印或连接列表的特定元素(Python)?

时间:2014-03-08 22:31:06

标签: python list join

list = [8,4,3,2,5]

有没有办法连接两个不使用切片的元素

print ' '.join(list[0:3]) #would print out the numbers in between

如果我想打印那些特定元素怎么办?

1 个答案:

答案 0 :(得分:7)

您可以使用Python's string formatter

>>> arr = [8,4,3,2,5]
>>> print "{0} {3}".format(*arr)
8 2

另外,请不要在内置函数/类型(例如list)之后命名变量。