Python object, data type summary

Source: Internet
Author: User

Python does not specify data types when defining variables (unlike Java)

Example 1:>>a=10

>>print type (a) # Print types

<type ' int ' > # can automatically recognize data types (for numbers, identify numeric type int)

Example 2:>>b= ' Love '

>>print type (b)

<type ' str ' > # identification data type str

A Python object contains three basic elements: ID (Identity), type (data type), value

Example:>> a=10

>>print ID (a) # Print ID

32145040 # This ID is a random identification of python assigned to a

type- data type:

Number numbers

    number types: int, long, float, complex

String strings

Consists of numbers, letters, underscores

List lists

Example: [' John ', 80,70.2]

Tuple tuples

strings or numbers enclosed in parentheses, read-only, cannot be assigned two times (constants in Java once assigned, cannot be changed while the program is running)

Example: (' Lily ', 2.2,90)

Dictionary Dictionary (Key/value)

Example: {' name ': ' Lucy ', ' Code ': 8080}

Python object, data type summary

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.