Raspberry Pi - Security and Deployment
What will be the output of this Python code on Raspberry Pi?
username = 'pi'
password = 'raspberry'
input_user = 'pi'
input_pass = 'wrongpass'
if input_user == username and input_pass == password:
print('Access granted')
else:
print('Access denied')