mirror of
https://github.com/octocat/Hello-World.git
synced 2026-06-04 14:17:09 +00:00
7 lines
202 B
Python
7 lines
202 B
Python
def login(username, password):
|
|
if username == "admin" and password == "1234":
|
|
return "Login Successful"
|
|
else:
|
|
return "Invalid Username or Password"
|
|
|
|
print(login("admin", "1234")) |