How to remove first element from every sub-array in 2-Dimentional class numpy.ndarray in Python -


i have numpy.ndarray -

[[1,2,3],[-7,7,2],[2,-3,4]]

i want remove first element of each array , convert

[[2,3],[7,2],[-3,4]]

is there function can this, rather having use explcit for loop?


Comments

Popular posts from this blog

networking - Vagrant-provisioned VirtualBox VM is not reachable from Ubuntu host -

c# - ASP.NET Core - There is already an object named 'AspNetRoles' in the database -

ruby on rails - ArgumentError: Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true -