统计两个数组中相同元素的个数
Posted ann21
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了统计两个数组中相同元素的个数相关的知识,希望对你有一定的参考价值。
import numpy as np
import tensorflow as tf
A = [1,3,4,5,6,1,2,3,4,5]
B = [1,3,4,3,2,2,2,3,4,3]
with tf.Session() as sess:
a=sess.run(tf.equal(A, B))
b=a.tolist().count(True)
print(a.tolist())
print(b)
以上是关于统计两个数组中相同元素的个数的主要内容,如果未能解决你的问题,请参考以下文章