Python dictionaries and collections (arrays)

Source: Internet
Author: User
Tags shallow copy
Dictionary
info = {    ' a ': 123,    ' B ': ' xxx '}# value two methods the first one does not exist error # print (info["x"]) print (Info.get (' x ')) # delete del info[' a ']# Determine if key exists print (' a ' in info)
Set/tuple
Import Copy  # introduces the Copy Library # Collection (array) names = [' AAA ', ' BBB ', ' CCC ', ' DDD ', [1, 2, 3, 4]]# insert Names.insert (0, ' first ') # Append NAMES.A Ppend (' last ') # Delete print (names) del Names[1]names.pop (1) names.remove ("ddd")  # does not exist will error # Find index print (Names.index (' Last ') # Statistics print (Names.count (' AAA ')) print (names) print ('--------------------------------------------------') # Shallow copy ( Only the nested collection in the 10% collection in copy will not be copied) Names2 = Names.copy () # deep copy  completely copies a copy of the data Names3 = copy.deepcopy (names2) print (NAMES3) # tuple Cannot Change name4 = (1, 2, 3, 4, 5, 6) print (Name4.index (1))

  

Python dictionaries and collections (arrays)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.