Elegant Python-A few lines of code to implement UNIX pipe-style function calls

Source: Internet
Author: User
Tags python decorator
Using Linux's basic knowledge of its pipeline is to use the output of a program or command as an input to a program or command.

Less nonsense, let's look at how Python implements the UNIX pipeline style function call.

#coding =utf-8class Pipe:    def __init__ (Self, func):        Self.func = func-    def __ror__ (self, Other):        return Self.func (Other) @Pipedef Add (args):    return sum (args) @Pipedef incr (ARG):    return arg + 1print [1, 2, 3] | add | incr
The principle is the adorner + operator overload. (See the essence of the <python decorator for the adorner smattering >)
Among the magic methods __ror__ overloaded Operators |
It's so simple and rough. Life is short, I use python!



Elegant Python-A few lines of code to implement UNIX pipe-style function calls

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.