I am trying to grab input and if the dictionary logins has a key that matches my input, I want to return the value of that key.
logins = {
    'admin':'admin',
    'turtle':'password123'
}
logging = input('username: ')
for logging in logins:
    print(logins.values())
 
     
     
     
    