diff options
author | Hunter Stevens <onebree@gmail.com> | 2016-02-15 17:47:35 -0500 |
---|---|---|
committer | Hunter Stevens <onebree@gmail.com> | 2016-02-15 17:47:35 -0500 |
commit | d0b067b140d3d351ae9dee0b3e542935b7ca35d4 (patch) | |
tree | b83501b5b82240663029d7382f873fb369ea81c7 /zh-cn/python3-cn.html.markdown | |
parent | cffb7e6770b517a620115b3a9e1f82ca1dd82a98 (diff) | |
parent | cd16626c8f64a29d8235bd0ab21c7a32e248928f (diff) |
Resolve conflicts from merge
Diffstat (limited to 'zh-cn/python3-cn.html.markdown')
-rw-r--r-- | zh-cn/python3-cn.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zh-cn/python3-cn.html.markdown b/zh-cn/python3-cn.html.markdown index c223297c..76455a46 100644 --- a/zh-cn/python3-cn.html.markdown +++ b/zh-cn/python3-cn.html.markdown @@ -535,7 +535,7 @@ Human.grunt() # => "*grunt*" # 用import导入模块 import math -print(math.sqrt(16)) # => 4 +print(math.sqrt(16)) # => 4.0 # 也可以从模块中导入个别值 from math import ceil, floor |