Dans python vous pouvez utiliser les mots-clés in et not in pour déterminer si une list contient un élément
pythontab = ['p','y','t','h','o','n','t','a','b'] if 't' in pythontab: print 't in pythontab' if 'w' not in pythontab: print 'w is not in pythontab'
in et not in sont très courants mots-clés utilisés.
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!