@PythonPr incorrect password, because we stored a str in password variable and not an integer which is given in the if statement so '123' != 123 that is why incorrect password.
@PythonPr "123" interpreted as string and not as actual numeric value when Python execute- so output is " incorrect password" If password = 123, then output will be "logged in".