随便写了非常简单的代码
odd_lst=[] for i in range(100): if i%2 == 1: odd_lst.append(i) print(odd_lst)
打印出来的效果,每个元素都自动换行了,非常奇怪 于是尝试使用print打印,这样就不会存在换行问题 尝试end='\n'也不会换行 问题出现在python的打印设置上,turn off pretty printing,输出就变为正常样子了
print
end='\n'