-2
I次のコードを持っていますが、else
ブランチは動作しませんエルスブランチは実行されません
def main():
while True:
username = input ("Enter Username: ")
password = input ("Enter Password: ")
if username == 'Filip' and password == 'XD' or "Miroslav" and "plusko12":
import time
time.sleep(1)
print ("Login successful!")
logged()
else:
print("STOP")
def logged():
import time
time.sleep(1)
print ("Welcome to the Server")
#Booting now
print("Booting will begin shortly")
import time
time.sleep(3)
print("Starting.................0%")
# ... and there's more stuff in here
quit(0)
main()
この文脈で「機能しない」とはどういう意味ですか?ちなみに 'if(username == 'Filip'とpassword == 'XD')か(username ==" Miroslav "とパスワード==" plusko12 "):' –
' XD '、 "Miroslav"、 "plusko12"}? –
インデントも間違っていると思います。 'if'が' while'の内側にあるはずです。 – MSeifert