Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion BankSystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def BankSystem(self):
print("1] Create an account in our bank\n")
print("2] Credit amount in your acount\n")
print("3] Debit amount from your account\n")
print("4] Check Balance\n")
print("4] Check Balance:\n")
print("5] Transaction Summary")
choice=int(input("Enter your choice:"))

Expand Down
4 changes: 2 additions & 2 deletions GUI-BankSystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def home_return(master):
def write(master,name,oc,pin):

if( (is_number(name)) or (is_number(oc)==0) or (is_number(pin)==0)or name==""):
messagebox.showinfo("Error","Invalid Credentials\nPlease try again.")
messagebox.showinfo("Error!","Invalid Credentials!\nPlease try again!")
master.destroy()
return

Expand Down Expand Up @@ -336,4 +336,4 @@ def Main_Menu():

rootwn.mainloop()

Main_Menu()
Main_Menu()