Here is a mistake
File "source_file.py", line 13 print ("error password") ^ IndentationError: expected an indented block
Here is the code
spisok=("netstalker", "hacker", "programmist", "admin") name=input("enter your username ") if (name in spisok): print ("hello", name) password=("qwerty123456") passw=input("input password: ") if (passw in password): print ("complite") else: print ("error password") else: print ("error")