Thủ Thuật Hướng dẫn List as matrix Python Mới Nhất
You đang tìm kiếm từ khóa List as matrix Python được Update vào lúc : 2022-01-06 11:27:03 . Với phương châm chia sẻ Bí quyết về trong nội dung bài viết một cách Chi Tiết 2022. Nếu sau khi Read tài liệu vẫn ko hiểu thì hoàn toàn có thể lại Comment ở cuối bài để Mình lý giải và hướng dẫn lại nha.
How to convert a list to an array in Python
During programming, there will be instances when you will need to convert existing lists to arrays in order to perform certain operations on them (arrays enable mathematical operations to be performed on them in ways that lists do not).
Nội dung chính
- How to convert a list to an array in Python
- 1. Using numpy.array()
- 2. Using numpy.asarray()
numpy.array()
numpy.asarray()
Lists can be converted to arrays using the built-in functions in the Python numpy library.
numpy provides us with two functions to use when converting a list into an array:
1. Using numpy.array()
This function of the numpy library takes a list as an argument and returns an array that contains all the elements of the list. See the example below:
import numpy as np
my_list = [2,4,6,8,10]
my_array = np.array(my_list)
# printing my_array
print my_array
# printing the type of my_array
print type(my_array)Run
2. Using numpy.asarray()
This function calls the numpy.array() function inside itself. See the definition below:
def asarray(a, dtype=None, order=None):
return array(a, dtype, copy=False, order=order)
The main difference between np.array() and np.asarray() is that the copy flag is false in the case of np.asarray(), and true (by default) in the case of np.array().
This means that np.array() will make a copy of the object (by default) and convert that to an array, while np.asarray() will not.
The code below illustrates the usage of np.asarray():
import numpy as np
my_list = [2,4,6,8,10]
my_array = np.asarray(my_list)
# printing my_array
print my_array
# printing the type of my_array
print type(my_array)Run
Reply
2
0
Chia sẻ
Share Link Cập nhật List as matrix Python miễn phí
Bạn vừa tìm hiểu thêm nội dung bài viết Với Một số hướng dẫn một cách rõ ràng hơn về Video List as matrix Python tiên tiến và phát triển nhất và ShareLink Tải List as matrix Python Free.
Thảo Luận vướng mắc về List as matrix Python
Nếu sau khi đọc nội dung bài viết List as matrix Python vẫn chưa hiểu thì hoàn toàn có thể lại Comment ở cuối bài để Admin lý giải và hướng dẫn lại nha
#List #matrix #Python