让我说我有:
hello = list(xrange(100))
print hello
结果是:
1, 2, 3, 4, 5, 6, 7, 8, 9, 10...
我需要从列表中删除所有这些空格,以便它们可以像:
1,2,3,4,5,6,7,8,9,10...
答案 0 :(得分:0)
由于join
采用字符串对象,因此需要将这些项显式转换为字符串。例如:
hello = ','.join(list(xrange(100)))
TypeError: sequence item 0: expected string, int found
所以:
hello = xrange(100)
print ''.join([str(n) for n in hello])
请注意,不需要list()
。