01/10/2018, 13:31

Cú pháp @ trong python

Em xin chào các bác.
Em hiện tại mới học python để lập trình command line cho linux. Em tìm được ví dụ như sau:

import click

@click.command()
@click.option('--count', default=1, help='Number of greetings.')
@click.option('--name', prompt='Your name',
          help='The person to greet.')
def hello(count, name):
    """Simple program that greets NAME for a total of COUNT times."""
    for x in range(count):
        click.echo('Hello %s!' % name)

 if __name__ == '__main__':
    hello()

Vậy cho em hỏi cú pháp @ đó là gì ạ? Các bác cho em keywork để em tìm hiểu với ạ. Thanks.

Quân viết 15:38 ngày 01/10/2018

Decorator … 20 char

vnPACE viết 15:44 ngày 01/10/2018

@click.

keyword: @classmethod python

stackoverflow.com

Meaning of @classmethod and @staticmethod for beginner?

python, oop, static-methods, class-method
asked by user1632861 on 01:37PM - 29 Aug 12
Bài liên quan
0