python将数组n等分的实例
废话不多说,直接上代码!
import math lists = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 16, 7, 8, 1] length = len(lists) n = 4 for i in range(n): one_list = lists[math.floor(i / n * length):math.floor((i + 1) / n * length)] print(one_list)
其中,使用math.floor()是对浮点数向下取整,math.ceil()向上取整,直接使用round()是取得一个float类型的数最接近的整数,类似于四舍五入,不过使用round(1.5),输出1.直接使用int()则去掉小数部分,使用这几个不同函数,分出的数组也是不一样的。
相关推荐
willowwgx 2019-10-26
hzcyhujw 2019-06-24
半粒红豆 2009-12-01
manmanoy 2017-01-06
oracleKing 2012-02-23
小白努力 2013-10-08
84261948 2019-04-18
zgzczzw 2011-05-09
xiaoheizhuoer 2019-04-07
PHP100 2019-03-27