Python function return value instance analysis

Source: Internet
Author: User
The example in this article describes the function return value usage of Python. Share to everyone for your reference. The specific analysis is as follows:

Recently learn some of the basic usage of Python, see the definition function, found that it seems to return only a return value, think of the MATLAB return multiple return value more convenient Ah, on-line check, see there is a way to return multiple values.

The return value of a Python function has two forms:

1 returns a value.
2 returns multiple values.

Now take a look at the return value of the bar.

def firstvalue (b): c = a + B return cprint firstvalue (#结果): 3

And look at the return of multiple values: How can I return multiple values, other languages generally call the function, you can only return a value, maybe I am not familiar with all the language, I know the language can only return a value, and Python can return multiple values, it is very convenient to send code to look at:

def secondvalue (b): c = a + B return (a,b,c) x, y, z = secondvalue (in) print ' ×: ', X, ' y: ', y, ' z: ', Z

Hopefully this article will help you with Python programming.

  • 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.