-2
私はPythonの初心者です。私はパスワードプログラムを作ろうとしています。私はあなたのパスワードが正しいものになるまでループするようにプログラムをしたい。Pythonのパスワードプログラムは動作しません。
6行目に何か問題があることがわかります(PassFound == Falseの間)。しかし、私は本当に何が分かりません。あなたにいくつかのアドバイスがありますように。
PassFound = False
PassWord = input("Create a password")
print("Okay your password is",PassWord)
while PassFound == False
print()
print()
print()
print("You are trying to acces a file without permission")
print()
print("Type your password to open this file")
Typed=input()
if (Typed == PassWord):
print("Password correct")
PassFound == True
break
if (Typed != PassWord):
print("Password is incorrect, please try again")
あなたのコードを正しくインデントしてください。 –
'PassFound == False'行にインデントがありません。コロンがありません。 –