python3--function return value

Source: Internet
Author: User

At the end of the function, there is a return value, which can be used to get the result returned to the function, so that the function is called externally to do different things depending on the value returned.

The return value can be specified if you do not specify a default return of None

def test1 ():    print (' Alex ') print (Test1 ()) def test2 ():    a = 5    if a < 5:        return True    else:        Return Falseprint (Test2 ()) #根据返回的值进行其他判断if test2 ():    print (' yes ') Else:    print (' No ')

Results:

Alexnonefalse
No

The function ends when it encounters a return, and how much of the code does not execute

function can return multiple values

def test3 ():    a = 1    b = 2    return A,bprint (Test3 ())

Results:

(1, 2)

Returning a multivalued value is actually returning a tuple, which returns a tuple in syntax to omit parentheses

You can also return to the list

def test3 ():    a = 1    b = 2    return [A,b]print (Test3 ())

Results:

[1, 2]

python3--function return value

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.