On 21/11/2018 20:18, Python wrote: > $ python3 > Python 3.5.2 (default, Nov 23 2017, 16:37:01) > [GCC 5.4.0 20160609] on linux > Type "help", "copyright", "credits" or "license" for more information. >>>> 1 in [1,2,3] == True > False >>>> 1 in ([1,2,3] == True) > Traceback (most recent call last): > File "<stdin>", line 1, in <module> > TypeError: argument of type 'bool' is not iterable >>>> (1 in [1,2,3]) == True > True >
See: https://github.com/cosmologicon/pywat ;-)
signature.asc
Description: OpenPGP digital signature
-- https://mail.python.org/mailman/listinfo/python-list