summaryrefslogtreecommitdiffhomepage
path: root/zh-cn/python3-cn.html.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'zh-cn/python3-cn.html.markdown')
-rw-r--r--zh-cn/python3-cn.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/zh-cn/python3-cn.html.markdown b/zh-cn/python3-cn.html.markdown
index 211ce0c5..16478fcb 100644
--- a/zh-cn/python3-cn.html.markdown
+++ b/zh-cn/python3-cn.html.markdown
@@ -362,7 +362,7 @@ else: # else语句是可选的,必须在所有的except之后
filled_dict = {"one": 1, "two": 2, "three": 3}
our_iterable = filled_dict.keys()
-print(our_iterable) # => range(1,10) 是一个实现可迭代接口的对象
+print(our_iterable) # => dict_keys(['one', 'two', 'three']),是一个实现可迭代接口的对象
# 可迭代对象可以遍历
for i in our_iterable: