You are viewing a single comment's thread. Return to all comments →
import numpy as np np.set_printoptions(legacy='1.13') A = np.array(tuple(map(float,input().split()))) print("%s\n%s\n%s"%(np.floor(A),np.ceil(A),np.rint(A)))
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 →