Python Basics Four

Source: Internet
Author: User

Functions and procedures
#-*-coding:utf-8-*-#functiondeffunc1 ():"""testing1"""    Print('In the func1')    return0#procedure is a function that does not return a valuedefFunc2 ():"""testing2"""    Print('In the Func2') x=func1 () y=Func2 ()Print('From func1 return is%s'%x)Print('From Func2 return is%s'%y

The above code runs the result

inch The func1 inch The Func2  from return  is 0  from return  is None

Function call Example one:
# -*-coding:utf-8-*- def Test (x, y    ): Print ('x=%d'%x)     Print ('y=%d'%y) Test (y=2,x=1) # keyword invocation, independent of formal parameter order

The above code runs the result

X=1y=2

Example two:
# -*-coding:utf-8-*- def Test (x, y    ): Print ('x=%d'%x)     Print ('y=%d'%y) Test (+)   # positional parameter invocation, actual participation in the position one by one corresponding to the formal parameter

The above code runs the result

X=1y=2

Example three:
# -*-coding:utf-8-*- def Test (x, y    , z): Print ('x=%d'%x)     Print ('y=%d'%y) Test (3,z=2,y=6) # keyword to be placed after the position parameter

The above code runs the result:

X=3y=6

Python Basics Four

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.