当我这样做时
x = "Hello"
if len(x) <= 9:
print("The password must contain at least 9 letters")
if x[0].islower():
print("The first password letter must be uppercase")
else:
print("Password saved")
password = x
我得到
>The password must contain at least 9 letters
>Password saved
我应该怎么做才能使程序停止:
>The password must contain at least 9 letters