Skip to content

Commit

Permalink
黄哥所写python文章
Browse files Browse the repository at this point in the history
  • Loading branch information
likepython committed May 6, 2016
1 parent 593a944 commit c9a73e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/learn_python_follow_brother_huang_4.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
![](operator.png)

\- 减法 35 - 20
\* 乘法 3 * 3
* 乘法 3 * 3
/ 除法 python 3 中 9 / 3 结果为 3.0 如果想和python 2 一样进行地板除(建议搜索一下何为地板除),那么需要这样, 9 // 3
// 地板除 9 // 2 结果为4
** 乘方 2 ** 3 结果为 8。相当于import math math.pow(2, 3)。
Expand Down

0 comments on commit c9a73e1

Please sign in to comment.