+ 2
What is wrong with my code pls
3 Answers
+ 1
pass is a keyword for skipping line, it does nothing but as it is a python keyword it cannot be used as name for anything
0
I need help
0
print ("Welcome to the party")
password=input("Enter your password")
user=input("Enter your username")
if password=="admin" and user=="admin":
print ("welcome to the party")
else :
print ("you are not")
here how it goes