共计 286 个字符,预计需要花费 1 分钟才能阅读完成。
在 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
。如果匹配到值,则会打印出匹配到的值。
丸趣 TV 网 – 提供最优质的资源集合!
正文完