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

What are the ways for python to import modules?

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

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

This article mainly shows you "what are the ways of python import module", the content is easy to understand, clear, hope to help you solve your doubts, the following let the editor lead you to study and learn "what are the ways of python import module" this article.

1. Import the whole module, and the module name + period cannot be omitted.

# import module_nameimport fibo

2. Import a specific function in the module, and you don't need to use the module name + period to call the function.

Because the functions fib and fib2 have been explicitly imported in the import statement, you only need to specify their names when called.

# from module_name import function_namefrom fibo import fib, fib2 fib (10)

3. Import all functions in the module, which will import all functions except the name that begins with an underscore (_).

Note: in most cases, this use of * is generally not recommended because it may introduce an unknown set of names into the interpreter, usually resulting in poor readability of the code.

# from module_name import * from fibo import * fib (20) above are all the contents of this article entitled "what are the ways to import python modules?" Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, 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

Development

Wechat

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

12
Report