码迷,mamicode.com
首页 > 其他好文 > 详细

math.ceil()

时间:2020-03-17 13:54:37      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:end   int   span   error:   ber   type   bsp   eal   back   

1.这个只接受一个真正的数!!!!!

2.这样会报错TypeError: must be real number, not list

import math as ma

list1 = [1,1.2,3,4,5,6.7]
ma.ceil(list1)

3.办法:循环追加;

import math as ma

list1 = [1,1.2,3,4,5,6.7]

list2 = []
for i in list1:
    x = ma.ceil(i)
    list2.append(x)

print(list2)

#输出:[1, 2, 3, 4, 5, 7]

 

math.ceil()

标签:end   int   span   error:   ber   type   bsp   eal   back   

原文地址:https://www.cnblogs.com/xiao-yu-/p/12510091.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!