Answers for "if num not in array python"

5

python check string not exist in array

arr_test = ["thetung1","thetung2","thetung3"]
title = "thetung"
if title not in arr_test:
	arr_test.append(title)
Posted by: Guest on November-01-2020
0

check if a numpy array contains only 1's python

>>> import numpy as np
>>> array=np.array([[1,1,1],[1,1,1],[1,1,1]])
>>> array([[1, 1, 1],
       	   [1, 1, 1],
           [1, 1, 1]])
>>> np.all(array == 1)
>>> True
Posted by: Guest on December-06-2020

Python Answers by Framework

Browse Popular Code Answers by Language