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

How to find the python variable name

2025-02-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

In this article Xiaobian for you to introduce in detail "python variable name how to find", detailed content, clear steps, details handled properly, I hope this "python variable name how to find" article can help you solve doubts, following the editor's ideas slowly in-depth, together to learn new knowledge.

1. Find the variable names from the inside out, which are Local, Enclosing, Global, and Builtin, respectively.

2. When accessing variables, first find the local variables, wrap the internal variables of the external function, then the global variables, and finally the built-in variables.

Example

In [11]: I = "G" In [12]: def test (): I = "L" print I, "in locals"....: In [13]: test () L in localsIn [14]: print I, "in globals" what can G in globalspython do Python is a programming language with many effective tools built in, Python is almost omnipotent, the language is easy to understand, easy to get started, powerful, and has a wide range of applications in many fields. For example, the most popular big data analysis, artificial intelligence, Web development and so on.

Read here, this article "how to find python variable names" article has been introduced, want to master the knowledge of this article also need to practice and use to understand, if you want to know more about the article, welcome to follow the industry information channel.

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

Wechat

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

12
Report