From ca762a938fb0abe5dfb20d3d4713b8e96d917ad4 Mon Sep 17 00:00:00 2001 From: iswbm Date: Tue, 25 Jan 2022 20:14:31 +0800 Subject: [PATCH] typo --- source/c05/c05_09.md | 2 +- source/c05/c05_09.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/c05/c05_09.md b/source/c05/c05_09.md index 49ce7fc..6b1aa35 100644 --- a/source/c05/c05_09.md +++ b/source/c05/c05_09.md @@ -6,7 +6,7 @@ >>> file=open('test.txt') >>> >>> print(file.readlines()) # 读取并打印 -Hello, Python +['hello,python\n'] >>> >>> file.close() # 关闭文件句柄 ``` diff --git a/source/c05/c05_09.rst b/source/c05/c05_09.rst index c811677..8f814d6 100644 --- a/source/c05/c05_09.rst +++ b/source/c05/c05_09.rst @@ -8,7 +8,7 @@ >>> file=open('test.txt') >>> >>> print(file.readlines()) # 读取并打印 - Hello, Python + ['hello,python\n'] >>> >>> file.close() # 关闭文件句柄 -- GitLab