我正在尝试将用户名和密码写入我已经创建的下载文件中的 txt 文件中,但是没有写入任何内容,程序只是运行。
def write_file(username, password):
f = open("increpted_data.txt", 'w')
data = username+' '+password
f.write(data)
f.close()
write_file("john", "doe")
我正在尝试将用户名和密码写入我已经创建的下载文件中的 txt 文件中,但是没有写入任何内容,程序只是运行。
def write_file(username, password):
f = open("increpted_data.txt", 'w')
data = username+' '+password
f.write(data)
f.close()
write_file("john", "doe")