Raspberry Pi - Security and Deployment
What will be the output of this Python code on Raspberry Pi?
stored_user = 'admin'
stored_pass = '1234'
input_user = 'Admin'
input_pass = '1234'
if input_user.lower() == stored_user and input_pass == stored_pass:
print('Welcome')
else:
print('Try again')