我正在使用append将新的用户名和密码添加到我的列表中。不过,它只是暂时将其添加到列表中,我该如何将其永久添加。
我的代码是:
list_usernames = ["person123",]
list_passwords = ["password123",]
new_username = input ("Create a username")
new_password = input ("Create a password")
list_usernames.append(new_username)
list_passwords.append(new_password)
print(list_usernames)
print(list_passwords)
答案 0 :(得分:0)
您不能将数据永久存储在脚本中。您需要使用.txt文件或数据库。
new_username = input ("Create a username")
new_password = input ("Create a password")
with open('somefile.txt', 'a') as the_file:
the_file.write(new_username + ' ' + new_password + '\n')
此语句会将所有新的用户名和密码写入文件
答案 1 :(得分:-1)
考虑要存储一些用户名和密码。无需每次都运行代码,您可以像这样修改代码
if (let value = someFunc()) {
// do something
}
在其他情况下,如果您不想多次运行程序,建议将数据存储到文件中