最后几行代码中的无限循环

infinite while loop in last lines of code

谁能帮我解决以下问题:

我有一个代码可以读取用户名和密码,然后允许用户访问程序。我有第一个选项来正确注册新用户。我的最后两行代码遇到了无限循环问题。我想 运行 一个字符串,说明如果输入未注册的用户名,它 returns 有一个字符串,说明没有这样的注册用户。该字符串只是在循环中保持 运行ning,我可以做些什么来改变它。

username: admin

password: adm1n

我的代码如下:

users = {}  
with open ('user.txt', 'rt')as username:
    for line in username:
        username, password = line.split(",")
        users[username.strip()] = password.strip()  # strip removes leading/trailing whitespaces

uinput = input("Please enter your username:\n")
while uinput not in users:
    print("Username incorrect.")
    uinput = input("Please enter a valid username:/n")

if uinput in users:
            print ("Username correct")

with open('user.txt', 'rt') as password:
    for line in password:
        username, password = line.split(",")
        users[password.strip()] = username.strip()  # strip removes leading/trailing whitespaces

uinput2 = input("Please enter your password:\n")
while uinput2 not in users:
    print("Your username is correct but your password is incorrect.")
    uinput2 = input("Please enter a valid password:\n")

if uinput2 in users:
    password2 = ("Password correct")
    print (password2)

if password2 == ("Password correct"):
       menu = (input("\nPlease select one of the following options:\nr - register user\na - add task\nva - view all tasks\nvm - view my tasks\ne - exit\n"))
    if menu == "r" or menu == "R":
                new_user = (input("Please enter a new user name:\n"))
                new_password = (input("Please enter a new password:\n"))
                with open ('user.txt', 'a')as username:
                        username.write("\n" + new_user + ", " + new_password)
    elif menu == "a" or menu == "A":
                task = input("Please enter the username of the person the task is asigned to.\n")
        while task not in username:
                print("User not registered. Please enter a valid username:\n")

最后有一个循环说

while task not in username:
    print("User not registered. Please enter a valid username:\n")

这是未完成的,将无限循环,因为如果 task 不在 username 中,打印一些东西不会改变这个事实,所以它只会循环并再次打印。您可能想添加类似

的内容
task = input("Please enter a valid username of a person the task is assigned to.\n")