exterminate icon indicating copy to clipboard operation
exterminate copied to clipboard

Break Python programs with a single import

Results 4 exterminate issues
Sort by recently updated
recently updated
newest added

we should definitely do this!

One of the advantages of Python over a language like C is that you can directly iterate over arrays. No more `for (var i = 0; i

Have fun! ```python # Make the `class` statement create dicts import builtins def build_class(body_func, name): namespace = {} exec(body_func.__code__, namespace) for key in list(namespace.keys()): if key.startswith('__'): del namespace[key] return namespace...

Hello, instead of *always* modifying the number you could instead modify it randomly (for example one out of every 100 numbers will be modified the other 99 will be the...