在下面的代码中,如果我将帐户实例创建为accnt并写入accnt.owner,则程序将返回内存位置,而不是该位置的值。如果我对所有者和余额使用 str ()方法,我可以同时获取accnt.owner和accnt.balance值。是否可以通过键入分别访问这两个值 帐户所有者)\ n 余额平衡 不使用打印功能?
class Account():
def __init__(self,owner,balance):
self.owner = owner
self.balance = balance
accnt = ("Jose",100)
acct.owner----> Should output Jose
acct.balance---->Should output 100
答案 0 :(得分:0)