while True:
print('Select a new password (letters and numbers only):')
password = input()
if password.isalnum():
print('Passwords can only have letters and numbers.')
break
else:
print('password set successfully')
what will be the output if the input given in line 3 is secr3t'1?

Posted on by