Python function Syntax Learning

Source: Internet
Author: User

Python functions
    • Defining functions
      In Python, a function is defined with a DEF statement that writes out the function name, the arguments in parentheses, and the colon: the function returns using the return statement.

      def myDef(x):    if x >= 0:        return x;    else:        return -x;print(myDef(12));
    • Function call
      Python has a number of functions built into it, and we can call them directly, calling them: function names (parameters). You need to pass in the correct parameters according to the function definition

    • Data type Conversion Functions

    • Parameters of the function
  1. Position parameters
    Functions like the calculation of x^2

        def power(x):        return x * x;
    X is a positional parameter, and when we call the function, we must pass in the only one parameter x. (To tell the truth, it is not very well understood the meaning of positional parameters, do not know whether you understand it, in the slowly experience it), you can also such power (x, N), calculate the value of x^n.
  2. Default parameters
    def power (x, n=2), such a function calls Power (5), you think you default to 2,x to 5.
  3. Variable parameters (*args)
    That is, the number of incoming parameters is variable.
    Calculate a^2 + b^2 + c^2 + ...

        def cale(numbers):        sum = 0;        for n in numbers:            sum = sum + n*n;        return sum;    #但是我们调用的时候,需要县组装出一个list或tuple    print(cale([1, 2,2]));    #9    print(cale((1, 3, 4, 7)));    #75
  4. Keyword parameter: Allows you to pass in 0 or more parameters with parameter names, which are automatically assembled into a dict (map) inside the function. (**KW)

        def person(name, age, **kw):        print(‘name:‘, name, ‘age:‘, age, ‘other:‘, kw)
  5. Named keyword parameters
    Keyword parameter **kw, the named keyword parameter requires a special delimiter , and subsequent arguments are treated as named keyword parameters.
  6. Combination parameters
    To define a function in Python, you can use the required parameters, default parameters, variable parameters, keyword arguments, and named keyword parameters, which can all be combined using 5 parameters. the order of the parameter definitions must be: required, default, variable, named keyword, and keyword parameters.

        def f1(a, b, c=0, *args, **kw):
    • Recursive functions
      That is, the function weight is called on the function itself.
    • Summarize
      Basic grammar Learning for Python functions requires a constant practice of examples in order to better understand them.

Python function Syntax Learning

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.