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 skills of Python coding

2025-03-07 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

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

This article mainly introduces "what are the skills of Python coding". In the daily operation, I believe that many people have doubts about the skills of Python coding. The editor consulted all kinds of materials and sorted out simple and easy-to-use methods of operation. I hope it will be helpful for you to answer the questions of "what are the skills of Python coding?" Next, please follow the editor to study!

1 、 isinstance

The isinstance function can be used to determine the type of instance, but its second argument can be a tuple of multiple data types. For example:

Isinstance (x, (int, float))

# is equivalent to

Isinstance (x, int) or isinstance (x, float)

Similar functions include string startswith methods and endswith methods, such as:

S.startswith ('','')

# is equivalent to

S.startswith ("'") or s.startswith (") 2. Share files with http.server # python3

Python3-m http.server

# python2

Python-m SimpleHTTPServer

As shown in the following figure, it is convenient to share files on the local area network through the browser.

3. Zip function implements dictionary key-value pair interchange > lang = {"python": ".py", "java": ".java"}

> dict (zip (lang.values (), lang.keys ()

{'.java': 'java',' .py': 'python'} 4, find the number that appears most frequently in the list [1, 2, 3, 4, 2, 2, 3, 1, 4, 4, 4, 5]

> > max (set (test), key=test.count)

45. Use _ _ slots__ to save memory class MyClass (object):

Def _ _ init__ (self, name, identifier):

Self.name = name

Self.identifier = identifier

Self.set_up ()

Print (sys.getsizeof (MyClass))

> 1016

Class MyClass (object):

_ _ slots__ = ['name',' identifier']

Def _ _ init__ (self, name, identifier):

Self.name = name

Self.identifier = identifier

Self.set_up ()

Print (sys.getsizeof (MyClass))

> The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!

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

Internet Technology

Wechat

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

12
Report