Arrays

  • + 0 comments

    For Python3 Platform

    import numpy
    
    def arrays(arr):
        return numpy.array(arr[::-1], float)
    
    arr = input().strip().split(' ')
    result = arrays(arr)
    print(result)