For python, all things are objects, objects are created based on classes, and python things

Source: Internet
Author: User

For python, all things are objects, objects are created based on classes, and python things

Create a list and a string

1 li1 = [1, 2, 3, 4] 2 li2 = list ([1, 2, 3]) 3 4 s1 = "abc" 5 s2 = str ("abc") 6 7 print (li1) 8 print (type (li1) 9 10 print (li2) 11 12 print (s1, s2) 13 14 # result: 15 # [1, 2, 3, 4] 16 # <class 'LIST'> 17 # [1, 2, 3] 18 # abc

Li1 li2 object is created by list object, s1 s2 object is created by str class

 

For Python, everything is an object, and objects are created based on classes.

Therefore, the following values are all objects: "wupeiqi", 38, ['beijing', 'shanghai', 'shenzhen'], and are generated based on different classes.

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.