CS61A学习笔记
文章平均质量分 50
suprefuck
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
类与对象中的属性赋值
class Account: interest = 0.02 # A class attribute def __init__(self, account_holder): self.balance = 0 self.holder = account_holder # Additional methods would be defined here如上图定义了一个账户类,利息设置为0..原创 2021-11-16 15:03:08 · 642 阅读 · 0 评论 -
方法与函数(methods and functions)
class Account: def __init__(self, account_holder): self.balance = 0 self.holder = account_holder def deposit(self, amount): self.balance = self.balance + amount return self.balance de.原创 2021-11-16 13:06:48 · 194 阅读 · 0 评论 -
基于列表与字典的消息传递
Message passing.Given some time, we could implement the many useful mutation operations of Python lists, such asextendandinsert. We would have a choice: we could implement them all as functions, which use the existing messagespop_firstandpush_f...原创 2021-11-12 21:52:23 · 459 阅读 · 0 评论
分享