Global and local variables

Source: Internet
Author: User

Global variables: variables that can be called by different functions, classes, or files are defined outside the function. Local variables: they can only be used in functions and are defined in functions.

Use of local variables: class Myclass: def myFun (): num = 12 print "myFun num =" + num # correct def myFun2 (): num = num + 1 print "muFun num =" + num # error num * = 10 print "MyClass num =" + num # Use of the error global variable: class Myclass: global x # define the global variable x = 12 def myFun (self): num = x + 1 print "myFun num =" + str (num) # myFun num 13 c = Myclass () mc. myFun ()

 


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.