summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorPratik Karki <predatoramigo@gmail.com>2018-05-31 23:50:12 +0545
committerGitHub <noreply@github.com>2018-05-31 23:50:12 +0545
commita1073cdb2ca437f73402ceb3522eabfa7c39d27f (patch)
tree05493794be3ffe94451f0db3cae59d623fcdb0bb
parentd3ab7a1e855d26d42c0d790745b479c348213300 (diff)
parente5422acf9b8829075dc857ec29a8704495094a2a (diff)
Merge pull request #3085 from Rholais/patch-1
[zh-cn/python3] Reorder confusing comments
-rw-r--r--zh-cn/python3-cn.html.markdown3
1 files changed, 2 insertions, 1 deletions
diff --git a/zh-cn/python3-cn.html.markdown b/zh-cn/python3-cn.html.markdown
index 76455a46..211ce0c5 100644
--- a/zh-cn/python3-cn.html.markdown
+++ b/zh-cn/python3-cn.html.markdown
@@ -568,13 +568,14 @@ def double_numbers(iterable):
yield i + i
# 生成器只有在需要时才计算下一个值。它们每一次循环只生成一个值,而不是把所有的
-# 值全部算好。这意味着double_numbers不会生成大于15的数字。
+# 值全部算好。
#
# range的返回值也是一个生成器,不然一个1到900000000的列表会花很多时间和内存。
#
# 如果你想用一个Python的关键字当作变量名,可以加一个下划线来区分。
range_ = range(1, 900000000)
# 当找到一个 >=30 的结果就会停
+# 这意味着 `double_numbers` 不会生成大于30的数。
for i in double_numbers(range_):
print(i)
if i >= 30: