Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

An example Analysis of the scope of Python variables

2025-01-30 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

The main content of this article is to explain "an example analysis of the scope of Python variables". Interested friends may wish to take a look. The method introduced in this paper is simple, fast and practical. Next let the editor to take you to learn the "Python variable scope example analysis" bar!

The variables in the function are local variables of the function and cannot be used outside the function.

> def f (): Xero5 > f () > > print (x) # error, x is not defined > def f () defines global variable x > f () > def 5 in print (x) 3 has no effect on the global variable

When the local variable has the same name as the global variable, the local variable masks the global variable

> Xerox 3 > def f (): Xero5 print (Xerox 2) > f () 25

If you want to use global variables and modify their values within the function first, use the keyword global to declare that global variables will be used

> Xerox 3 > def f (): global x print (Xerox variables 2) x examples 5 print (x cycles 2) > > f () 925 > x5 to this point, I believe you have a deeper understanding of the "Python variable scope example analysis", might as well come to the actual operation of it! Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report