Raspberry Pi - Security and Deployment
What will be the output of this Python code running on a Raspberry Pi that checks if a device is secure based on password strength?
password = 'abc123'
if len(password) >= 8 and any(c.isdigit() for c in password) and any(c.isalpha() for c in password):
print('Secure')
else:
print('Not Secure')