标签:操作 rop includes lock python include index 对象 des
python有in操作, 可以很方便的用于判断元素是否存在指定列表.
JS的in操作是对象, 用于判断指定的属性在指定对象中是否存在.
propNameOrNumber in objectName
if(arraylist.indexOf("XX") != -1)
{
// element found
}
if (blockedTile.includes("118")) {
// found element
}
标签:操作 rop includes lock python include index 对象 des
原文地址:https://www.cnblogs.com/amyzhu/p/10316896.html