Home  >  Article  >  Backend Development  >  How to convert numpy and array in python

How to convert numpy and array in python

php中世界最好的语言
php中世界最好的语言Original
2018-04-09 15:39:525375browse

This time I will bring you how to convert numpy and array in python, how to convert numpy and array in pythonNotesYes Which ones, the following are practical cases, let’s take a look.

The example is as follows:

u = array([[1,2],[3,4]])
m = u.tolist()
#转换为list
m.remove(m[0])
#移除m[0]
m = np.array(m)
#转换为arra

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other php Chinese websites related articles!

Recommended reading:

Summary of Pycharm usage skills

How to use the max function in a two-dimensional list

The above is the detailed content of How to convert numpy and array in python. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn