Please Login in order to post a comment
import numpy def arrays(arr): numpy.array(arr,dtype=float) arr = arr[::-1] return arr
arr = input().strip().split(' ') result = arrays(arr) print(result
arr = input().strip().split(' ') Why there are codes in split()??
import numpy def arrays(arr): return (numpy.array(arr, float)[::-1]) arr = input().strip().split(' ') result = arrays(arr) print(result)
def arrays(arr): # complete this function # use numpy.array return numpy.array(arr).astype(float)[::-1]
import numpy
def arrays(arr): a = numpy.array(arr, float) return (a[::-1])
arr = input().strip().split(' ') result = arrays(arr) print(result)
def arrays(arr): return numpy.array(arr, float)[::-1]
Seems like cookies are disabled on this browser, please enable them to open this website
import numpy def arrays(arr): numpy.array(arr,dtype=float) arr = arr[::-1] return arr
arr = input().strip().split(' ') result = arrays(arr) print(result
arr = input().strip().split(' ') Why there are codes in split()??
def arrays(arr): # complete this function # use numpy.array return numpy.array(arr).astype(float)[::-1]
import numpy
def arrays(arr): a = numpy.array(arr, float) return (a[::-1])
arr = input().strip().split(' ') result = arrays(arr) print(result)