在Python中,可以使用循環或列表推導式來匹配數組中的值。
array = [1, 2, 3, 4, 5]
value = 3
for item in array:
if item == value:
print("匹配到值", value)
break
array = [1, 2, 3, 4, 5]
value = 3
matches = [item for item in array if item == value]
if len(matches) > 0:
print("匹配到值", value)
上述代碼將匹配數組array
中的值是否等于給定的value
。如果匹配到值,則會打印出匹配到的值。