you are implementing security measures on a server. if a user has more than 3 failed login attempts, the…

you are implementing security measures on a server. if a user has more than 3 failed login attempts, the program should print \locked out\. the number of failed login attempts is stored in a variable called failed_attempts. which conditional statement has the correct syntax needed to do this? if failed_attempts >= 3 print(\locked out\) if failed_attempts > 3: print(\locked out\) if failed_attempts < 3 print(\locked out\) if failed_attempts <= 3: print(\locked out\)