使用class创建对象——python函数
提问人:杨紫红发布时间:2020-11-26
使用class创建对象
a = Account(1000.0)
a.deposit(550.23)
a.deposit(100)
a.withdraw(50)
print a.getBalance()
继续查找其他问题的答案?
相关视频回答
回复(0)
使用class创建对象
a = Account(1000.0)
a.deposit(550.23)
a.deposit(100)
a.withdraw(50)
print a.getBalance()
点击加载更多评论>>