Raspberry Pi - Security and Deployment
Identify the error in this Raspberry Pi Python authentication code:
username = 'pi'
password = 'raspberry'
input_user = input('Enter username: ')
input_pass = input('Enter password: ')
if input_user == username and input_pass = password:
print('Access granted')