Categories: Thủ Thuật Mới

Review Python list all zeros Mới nhất

Mục lục bài viết

Thủ Thuật về Python list all zeros Chi Tiết

Update: 2022-01-06 10:30:06,You Cần biết về Python list all zeros. Bạn trọn vẹn có thể lại Báo lỗi ở phía dưới để Tác giả đc tương hỗ.


Python | Check if all values in numpy are zero

Given a numpy array, the task is to check whether the numpy array contains all zeroes or not. Lets discuss few ways to solve the above task.
Method #1: Getting count of Zeros using numpy.count_nonzero()

Python3

# Python code to demonstrate
# to count the number of elements
# in numpy which are zero

import numpy as np

ini_array1 = np.array([1, 2, 3, 4, 5, 6, 0])

ini_array2 = np.array([0, 0, 0, 0, 0, 0])

# printing initial arrays

print(“initial arrays”, ini_array1)

print(ini_array2)

# code to find whether all elements are zero

countzero_in1 = np.count_nonzero(ini_array1)

countzero_in2 = np.count_nonzero(ini_array2)

# printing result

print(“Number of non-zeroes in array1 : “, countzero_in1)

print(“Number of non-zeroes in array2 : “, countzero_in2)

Output:
initial arrays [1 2 3 4 5 6 0]
[0 0 0 0 0 0]
Number of non-zeroes in array1 : 6
Number of non-zeroes in array2 : 0

Method #2: Using numpy.any()

Python3

# Python code to check that whether
# all elements in numpy are zero

import numpy as np

ini_array1 = np.array([1, 2, 3, 4, 5, 6, 0])

ini_array2 = np.array([0, 0, 0, 0, 0, 0])

# printing initial arrays

print(“initial arrays”, ini_array1)

# code to find whether all elements are zero

countzero_in1 = not np.any(ini_array1)

countzero_in2 = not np.any(ini_array2)

# printing result

print(“Whole array contains zeroes in array1 ?: “, countzero_in1)

print(“Whole array contains zeroes in array2 ?: “, countzero_in2)

Output:
initial arrays [1 2 3 4 5 6 0]
Whole array contains zeroes in array1 ?: False
Whole array contains zeroes in array2 ?: True

Article Tags :

Python
Python numpy-program

Read Full Article

Reply
2
0
Chia sẻ

đoạn Clip hướng dẫn Chia Sẻ Link Down Python list all zeros ?

– Một số Keyword tìm kiếm nhiều : ” Video full hướng dẫn Python list all zeros tiên tiến và phát triển nhất , Chia Sẻ Link Down Python list all zeros “.

Thảo Luận vướng mắc về Python list all zeros

Bạn trọn vẹn có thể để lại Comments nếu gặp yếu tố chưa hiểu nha.
#Python #list #zeros

Phương Bách

Published by
Phương Bách