I'm using the same test code in cPython and IronPython, in cPython it works but I'm getting "name all is not defined" in IronPython in asp.net . I wonder if I have to import some module to use it in IronPython or it's just not available?
lista = ['a','b']
listados = ['a','b','c']
aca = all(value in listados for value in lista)