You are viewing a single comment's thread. Return to all comments →
import numpy numpy.set_printoptions(legacy="1.13") arr = numpy.array(list(map(float,(input().split())))) # print(arr) print(numpy.floor(arr)) print(numpy.ceil(arr)) print(numpy.rint(arr))
Seems like cookies are disabled on this browser, please enable them to open this website
Floor, Ceil and Rint
You are viewing a single comment's thread. Return to all comments →