You are viewing a single comment's thread. Return to all comments →
dont miss this numpy.set_printoptions(legacy='1.13')
import numpy numpy.set_printoptions(legacy='1.13') my_array = list(map(float,input().split())) print(numpy.floor(my_array) ) print(numpy.ceil(my_array) ) print(numpy.rint(my_array) )
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 →
dont miss this numpy.set_printoptions(legacy='1.13')