Explanation on converting Python list to array

php中世界最好的语言
Release: 2018-04-09 15:34:45
Original
1984 people have browsed it

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]]
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!