小试 Python(二)if x in y统计两个数组的相同元素个数示例:
1234567891011num1 = [1, 2, 3, 4, 5, 6]num2 = [4, 5, 6, 7, 8, 9]count = 0for i in n
2021-08-13