diff --git a/BankSystem.py b/BankSystem.py index adbc563..e71b3d8 100644 --- a/BankSystem.py +++ b/BankSystem.py @@ -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:")) diff --git a/GUI-BankSystem.py b/GUI-BankSystem.py index 5a42512..d38433d 100644 --- a/GUI-BankSystem.py +++ b/GUI-BankSystem.py @@ -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 @@ -336,4 +336,4 @@ def Main_Menu(): rootwn.mainloop() -Main_Menu() \ No newline at end of file +Main_Menu()