
[英]i save files(.jpg) in another folder and i want to use that files in my python program. how do i import them
[英]I want my python program to save see explanation [closed]
UsernameList = ['Kar', 'Harry', 'Lolu']
PassList = ['Kar98', 'Harry96', 'Ak47']
Username = input("Enter Your Username: ")
Password = input("Enter Your Password: ")
if Username in UsernameList and Password in PassList :
print('Logged In Successfully!!')
else:
print('Create Your Account')
Useradd = input('Enter a username: ')
UsernameList.append(Useradd)
当我再次运行程序时,刚刚添加的用户名和密码消失了
声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.