Python f.write函数

时间:2016-03-28 02:06:55

标签: python fwrite

这个程序在第二行写什么?

username = "Mo\nty"

password = "Py\thon"

f = open("andmed.txt", "w")

f.write("username:" + username + "\n")

f.write("password:" + password)

f.close()

1 个答案:

答案 0 :(得分:0)

\ n和\ t字符分别被解释为换行符和制表符 因此,输出如下:

用户名:沫
TY
密码:Py hon