Home  >  Article  >  Backend Development  >  Explanation on converting Python list to array

Explanation on converting Python list to array

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

This time I will bring you a case explanation of converting a pyhton list into an array. What are the precautions for converting a pyhton list into an array? The following is a practical case. Let’s take a look. .

The examples are as follows:

import numpy as np
X=[[1,2,3,4],[5,6,7,8],[9,0,11,12]]
'列表转换为数组'
Y=np.array(X)
print(Y)
#输出结果
# [[ 1 2 3 4]
# [ 5 6 7 8]
# [ 9 0 11 12]]

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

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 Explanation on converting Python list to array. 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