python数学自学_python学习笔记1-数学函数math
看书看到浮点数部分。里面用到了math.ceil()。一看就知道是向上取整,在pycharm里运行却报错了File "E:/my_works/python/ch01/1-4.py", line 10, in print( math.floor(b) )NameError: name 'math' is not defined“math”没有定义?对于用惯了JS的人来说,很奇怪。第一反应就是pyth...