Q59
Single choice
What is the output of this code?
def get_credentials():
creds={'username': 'cisco', 'password': 'c3577dc8ae4e36c0bfb6f653990793338'}
return (creds.get('username'))
print(get_credentials())