📜  Python中的 numpy.setxor1d()函数

📅  最后修改于: 2022-05-13 01:55:30.280000             🧑  作者: Mango

Python中的 numpy.setxor1d()函数

numpy.setxor1d()函数找到两个数组的异或集,并返回仅在一个(不是两个)输入数组中的排序后的唯一值。

代码#1:

# Python program explaining
# numpy.setxor1d() function
    
# importing numpy as geek 
import numpy as geek 
   
arr1 = [1, 2, 3, 4]
arr2 = [2, 4, 6, 8]
   
gfg = geek.setxor1d(arr1, arr2)
   
print (gfg)

输出 :

[1 3 6 8]


代码#2:

# Python program explaining
# numpy.setxor1d() function
    
# importing numpy as geek 
import numpy as geek 
   
arr1 = [1, 2, 3, 4, 5]
arr2 = [-2, -1, 0, 1, 2]
   
gfg = geek.setxor1d(arr1, arr2)
   
print (gfg)

输出 :

[-2 -1  0  3  4  5]