diff options
author | Hui Lan <lanhui@zjnu.edu.cn> | 2019-07-26 21:27:30 +0800 |
---|---|---|
committer | Hui Lan <lanhui@zjnu.edu.cn> | 2019-07-26 21:27:30 +0800 |
commit | 1a19a43638d12805c9fc01a811bdde78488ff241 (patch) | |
tree | 74cbc0fe2b8cc9a21a3535641b4359899efee85d /LectureNotesOnPython.rst | |
parent | c18f44a571e041895408b97579e6730fb73e4a90 (diff) |
LectureNotesOnPython.rst: 修改defaultdict那节下的一个小错误 不在应该是不再
Diffstat (limited to 'LectureNotesOnPython.rst')
-rw-r--r-- | LectureNotesOnPython.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LectureNotesOnPython.rst b/LectureNotesOnPython.rst index 62dcf3d..876b4fb 100644 --- a/LectureNotesOnPython.rst +++ b/LectureNotesOnPython.rst @@ -2754,7 +2754,7 @@ defaultdict ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -可以避免第一次加 value 时 key 不在引起的 KeyError。 +可以避免第一次加 value 时 key 不再引起的 KeyError。 .. code:: python |