Challenge - #45 - Floor, Ceil, and Rint Get link Facebook X Pinterest Email Other Apps December 24, 2020 import numpy numpy.set_printoptions(legacy= '1.13' ) A = numpy.array( input ().split(), float ) print (numpy.floor(A),numpy.ceil(A),numpy.rint(A),sep= '\n' ) Read more