mirror of
https://github.com/octocat/Hello-World.git
synced 2026-06-27 13:37:48 +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"))
|