Email or username:

Password:

Forgot your password?
2 comments
jilotta

@Markus @ProgrammerHumor

it swaps len (get length of list/string/etc) and print

Анатолий Богомолов

@Markus @ProgrammerHumor simpler example would be:

```python
len, print = print, len
len("test")
print("5")
```

Go Up