Challenge - #45 - Floor, Ceil, and Rint

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')

Comments

Popular posts from this blog

Challenge - #48 - Incorrect Regex

Challenge - #43 - Time Delta

Challenge - #52 - Set .discard(), .remove(), & .pop()