ASSIGNMENT
Q.4
Q.4 Write a Python program to create a Simple Login System.
username = "admin" password = "1234" # User input user = input("Enter Username: ") pwd = input("Enter Password: ") if user == username and pwd == password: print("Login Successful") else: print("Invalid Username or Password")


