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 related operations of the Python collection

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

Share

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

Editor to share with you what are the relevant operations of the Python collection, I believe most people do not know much about it, so share this article for your reference, I hope you can learn a lot after reading this article, let's go to know it!

Introduction

I. how to create a collection

# use {} s = {1 range 2) 3 Jing 4 3 Jing 2} # do not allow repeating elements print (s) # use the built-in function set () s = set (range (6)) print (s) print (set (range (9) print (set ([10 Magi 12 Magneto 13) 4]) print (set ('Python')) II, related operations of the set

Set = {10print (10 in set) # New Operation # add () set.add (80) print (set) # update () set.update ([60print 70Pen90]) print (set) # Delete operation # removeset.remove (80) print (set) # pop delete one element at a time set.pop () print (set) # clearset.clear () print (set) 3, set generation

The above is all the contents of the article "what are the related operations of the Python collection?" 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