Recent topics
нас паук не может съесть и тапков мы не боимся!
но вкус ногами и крыльями и жопой мы не чувствуем.
Because iterators are so deeply wired into the language, they can be used somewhat like Unix pipes. So the shell construct:
cat filename | sort | uniq
can be expressed similarly in Python as:
sorted(set(open(filename)))