diff options
author | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-04-06 08:33:50 -0700 |
---|---|---|
committer | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-04-06 08:33:50 -0700 |
commit | 3e687f1a8ccb1cd0d52a966005551d528ca141df (patch) | |
tree | 30d433ba19ec49808cc0f0de8a161835ad5f29c9 /zh-cn/pythonlegacy-cn.html.markdown | |
parent | 9fa4b5af80f1cd7fe2469c198d02a21e4f8884a1 (diff) |
Remove leading and trailing empty lines in code blocks
Diffstat (limited to 'zh-cn/pythonlegacy-cn.html.markdown')
-rw-r--r-- | zh-cn/pythonlegacy-cn.html.markdown | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/zh-cn/pythonlegacy-cn.html.markdown b/zh-cn/pythonlegacy-cn.html.markdown index f8aa2332..d7d28d50 100644 --- a/zh-cn/pythonlegacy-cn.html.markdown +++ b/zh-cn/pythonlegacy-cn.html.markdown @@ -17,7 +17,6 @@ Python 由 Guido Van Rossum 在90年代初创建。 它现在是最流行的语 如果是Python 3,请在网络上寻找其他教程 ```python - # 单行注释 """ 多行字符串可以用 三个引号包裹,不过这也可以被当做 @@ -461,8 +460,6 @@ math.sqrt(16) == m.sqrt(16) # => True # 也可以通过下面的方法查看模块中有什么属性和方法 import math dir(math) - - ``` ## 更多阅读 |