标签: python whitespace
我试图了解命令'\ t'的工作方式。我刚刚编写了以下代码
fic4 = open('name.txt','w') for k in range(100): x = k/100 y = x**2+3.5 z = x fic4.write(str(x) + '\t' + str(y) + '\t' + str(z) + '\n') fic4.close()
它给了我以下结果
我不明白为什么(以及如何)间距从一行到另一行变化。有人可以向我解释这种现象吗?