python 将元组中浮点类型的元素转为整型

(1)只需要转换为整数而不进行舍入
new_t = tuple(map(int, old_t))
(2)需要舍入整数
new_t = tuple(map(round, old_t))

你可能感兴趣的:(python)