Arrays

  • + 0 comments

    BY GK import numpy def arrays(arr):

    converType = numpy.array(arr,dtype="float")
    return numpy.flip(converType)
    

    arr = input().strip().split(' ') result = arrays(arr) print(result) --------> flip is used to reverse the number