def function (*args) usage in Python

Source: Internet
Author: User
Tags abs

def function () is available in Python: Create a custom function.

Here I'll use the code def function(*args): to explain how---*args input parameters work:

*args```可以接受序列的输入参数。当函数的参数不确定时,可以使用 *args。
#!/usr/bin/python# -*- coding: UTF-8 -*-def biggest_number(*args):    print max(args)    return max(args)def smallest_number(*args):    print min(args)    return min(args)def distance_from_zero(arg):    print abs(arg)    return abs(arg)biggest_number(-10, -5, 5, 10)smallest_number(-10, -5, 5, 10)distance_from_zero(-10)

Program Output Result:

C:\Users\douk\PycharmProjects\Python_Learn\venv\Scripts\python.exe C:/Users/douk/PycharmProjects/Python_Learn/Print_test.py  10  -10  10  Process finished with exit code 0  

def function (*args) usage in Python

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.