我最近开始使用Python学习OOP,并且为了测试我的类构建和继承技能,我为银行应用程序构建了一个简单的框架。据我所知,基于对OOP中继承如何执行的了解,我的代码在语法方面没有错:
help test
但是,当我调用Bank()。Menu()时,出现以下错误:
import pickle, sys, datetime
class Bank():
def __init__(self):
with open('accounts.txt','rb') as fp:
accounts=pickle.load(fp)
def exit(self):
with open('accounts.txt','wb') as fp:
pickle.dump(accounts,fp)
sys.exit()
class TransactionMenu(Bank):
def __str__(self,account):
if str(super().accounts[account])[::-1].find('.')==-1:
nT=str(super().accounts[account])+'.00'
elif str(super().accounts[account])[::-1].find('.')==1:
nT=str(super().accounts[account])+'0'
else:
nT=str(super().accounts[account])
return '£'+nT
def balanceEnquiry(self,account):
print('Date: '+datetime.datetime.now()+'\n'+'Account name: '+account+'\n'+'Balance: '+self.__str__(account))
def deposit(self,account):
while True:
print('current balance: '+self.__str__(account))
amt=input('enter deposit amount: ')
try:
if '.' in amt:
amt=float(amt)
else:
amt=int(amt)
super().accounts[account]+=amt
print('new balance: '+self.__str__(account))
break
except:
pass
def withdraw(self,account):
while True:
print('current balance: '+self.__str__(account))
amt=input('enter withdrawal amount: ')
try:
if '.' in amt:
amt=float(amt)
else:
amt=int(amt)
super().accounts[account]-=amt
print('new balance: '+self.__str__(account))
break
except:
pass
def __init__(self,account):
while True:
choice=input('enter balance enquiry, deposit, withdraw or exit: ').lower()
if choice=='b' or choice=='balance' or choice=='balance enquiry' or choice=='enquiry' or choice=='balance enquiry' or choice=='bal':
self.balanceEnquiry(account)
elif choice=='d' or choice=='deposit':
self.deposit(account)
elif choice=='w' or choice=='withdraw':
self.withdraw(account)
elif acc=='e' or acc=='exit':
super().exit()
class Menu(Bank):
def logIn(self):
while True:
accN=input('enter your account name or exit: ').lower()
if acc=='e' or acc=='exit':
super().exit()
else:
for account in super().accounts:
if accN==account:
TransactionMenu(accN)
break
def createAccount(self):
while True:
newAcc=input('enter your forename and surname or exit: ').lower()
if acc=='e' or acc=='exit':
super().exit()
else:
super().accounts[newAcc]=0.00
def __init__(self):
while True:
acc=input('enter login, register or exit: ').lower()
if acc=='l' or acc=='login' or acc=='log in' or acc=='log-in':
self.logIn()
break
elif acc=='r' or acc=='register' or acc=='reg':
self.createAccount()
break
elif acc=='e' or acc=='exit':
super().exit()
Bank().Menu()
这意味着我没有正确执行继承,但是我看不出是这种情况。
非常感谢您的帮助。
答案 0 :(得分:0)
像Menu
这样定义class Menu(Bank)
意味着Bank
是Menu
的超类。
Menu
将从Bank
继承所有内容,但是可以通过在子类中重新定义来忽略该继承。
据我所知,将某些东西声明为超类并不能在超类内部定义子类。
我不确定您要做什么,因此很难为您提供建议。我希望这可以解释一些事情。