Quelques notes sur Python
Avec des choses pas jolies du genre:
>>> True / False Traceback (most recent call last): File "", line 1, in ZeroDivisionError: int division or modulo by zero
Ou plus jolies:
>>> a_list.insert(0, 'Ω') >>> a_list ['Ω', 'a', 1, True, 'Python', 3.1415, 'Toto', 42, False]