打印列表内容

values = [4, 10, 3, 8, -6]
for i in range(len(values)):
	print(i, values[i])

编程技巧