myfile = open('C:\new\text.dat', 'w')
这样的话会被误认为\n为换行符、\t为制表符、而被转义、
因此可以加上个r、表示raw字符、不进行转义
myfile = open(r'C:\new\text.dat', 'w')
这样的话就可以了