Python automated development-variables, data types and operations, python Data Types

Source: Internet
Author: User

Python automated development-variables, data types and operations, python Data Types

I. Variables

Variable definition: Variables are used to store infomation to referrenced and manipulated in a computer program.

Used to store the intermediate calculation result of a program running.

  • Identifier
  • Storage

Variables are represented by a variable name in the program.

  • The variable name must be a combination of uppercase and lowercase English letters, numbers, and _, and cannot start with a number.
  • Case Sensitive
  • We recommend that you use the camper method, such as myFirstName and myLastName.
  • The keyword cannot be declared as a variable.

In Python, equal sign = is a value assignment statement, which can assign any data type to a variable. The same variable can be assigned multiple times and can be of different types.

MyFisrtName = "Jonathan"

MyLastName = "Ni"

 

 

 

Do not equate the equals sign of the value assignment statement with the equals sign of mathematics. For example, the following code:

X = 8

X = x + 2

 

 

 

Mathematical understanding of x = x + 2 is not true. In the program, the value assignment statement calculates the expression x + 2 on the right, returns 10, and then assigns the variable x.

Since the value before x is 8, after the value is re-assigned, the value of x becomes 10.

 

It is very important to understand the representation of variables in computer memory. For example, the following statements declare variables and assign values.

A = "ABC"

 

 

The Python interpreter does two things:

A constant is a variable that cannot be changed. It is usually represented by a variable name in uppercase.

PI = 1, 3.14159265359

 

 

Summary:

In a computer, any data is regarded as an "object", and variables are used to point to these data objects in a program. assigning values to variables is to associate the data and variables.

 

Ii. Data Types

A computer is a machine that can be used for mathematical computation. Computer programs naturally need to process various numbers. In addition to numeric values, computers can also process text, graphics, audio, video, webpages, etc.

Various data. Different data types must be defined.

 

1. Number

Integer: indicates that the method is the same as that in mathematics, such as 1,-100, 0, and 1000. Or in hexadecimal notation, 0 xffffff, 0xabcd, etc.

Floating point: that is, decimal places, such as 0.99,-1.25, and 88.88. Or use scientific notation to indicate 1.23e8, 1.2e-8, etc.

Plural: it consists of a real number and a virtual number. Generally, it is in the form of x + yj, such as (-5 + 4j ).

There is no limit on the number size. If the number exceeds a certain range, it is expressed as inf (infinitely large)

 

2. String

A string is any text enclosed by single quotation marks or double quotation marks, such as 'abc' and "XYZ. 'Or "is only a representation, not part of a string,

For example, 'abc' only contains three characters: a, B, and c.

If 'is also a character, it can be enclosed by "". For example, "I'm OK" contains the characters I,', m, space, O, k.

The character string contains both 'and can be identified by escape characters. For example, 'I \' m \ "OK \"! ', Indicating I'm "OK "!

Escape characters can escape many characters. For example, \ n indicates line breaks, \ t indicates tabs, and \ indicates characters \

If a string contains many line breaks, the format of '''... ''' can be used to represent multiple lines of content.

 

Common string functions

  • String. strip ([chars])This method is used to remove the specified character (space by default) from the start or end of a string)

"Jonathan". Strip ()>>> "Jonathan"

"; Jonathan ;;".Strip (";")>>> "Jonathan"

 

 

 

Parameter: chars -- remove the specified character from the start or end of the string

Return Value: return the new string generated by removing the specified character from the start or end of the string. The original string remains unchanged.

  • Len (string)Returns the string length.
Len ("Jonathan")>>> 8

 

Parameter: str -- string

Return Value: String Length

  • String. index (str, beg = 0, end = len (str ))Method to check whether a string contains a substring 'str'

"Jonathan". index ("J") >>> 0

"Jonathan". index ("J", 1) >>>Substring not found

"Jonathan". index ("an") >>> 6

 

 

 

 

Parameters:

Str -- specify the string to be retrieved

Beg -- start index. The default value is 0.

End -- end index. The default value is the string length.

Returned value: If a substring is included, the system returns the starting index value. Otherwise, an exception is thrown.

  • Value in the access string

Python does not support the single character type. A single character is also used as a string in Python.
Access the substring and use square brackets to intercept the substring.

"Jonathan"[0]>>> "J" # subscript starts from 0

"Jonathan"[0: 3]>>> "Jon" # ignore the tail

"Jonathan"[-1]>>> "N" # Last

"Jonathan"[-3:-1]>>> "Ha" # ignore tail

"Jonathan"[-3: 0]>>> "" # No truncation from the back to the front

"Jonathan[-3:]>>> "Han"# The Interpreter identifies all characters from the last to the last

"Jonathan"[]>>>Invalid syntax# The interpreter cannot tell whether a single character is a specific interval character.

"Jonathan"[:]>>> "Jonathan" # The Interpreter recognizes all characters

"Jonathan"[0:Len ("Jonathan")]>>> "Jonathan"

"Jonathan"[-Len ("Jonathan"):]>>> "Jonathan"

"Jonathan"[:-2]>>> "Jnta" # the last digit represents step 2.

 

 

 

 

 

 

 

 

 

 

 

  • String concatenation

"Jon" + "nathan"> "Joanthan" # encounter +, the interpreter needs to apply for memory again

 

 

  • Format output

Name = "Jonathan"

Print ("My name is % s." % (name) >>> "My name is Jonathan ."

 

 

 

3. Boolean

The Boolean value is exactly the same as that of Boolean algebra. A boolean value is only True or False (case sensitive ).And, or,AndNotOperation

AndOperation and operation, only True for all,AndThe result is True.

OrOperation is or, as long as one of them is True,OrThe result is True:

NotThe operation is not an operation. It is a single-object operator that converts True to False and False to True.

Boolean values are often used in condition judgment.

IfAge> = 18:

Print("Adult ")

Else:

Print("Teenager ")

 

 

 

 

 

4. Null Value

A null value is a special value in Python, expressed as None. None cannot be understood as 0, because 0 is meaningful, and None is a special null value.

 

5. List

The list is the most common data type in Python. You can use the list to conveniently store and modify data.

Definition list names = ["Jon", "Alex", "Tom", "Catherine"]

Access the elements in the list by subscript. The subscript starts counting from 0.

Names [0]> "Jon"

Names [-1]> "Catherine"

 

 

 

Operate the list

Names [0] = "Jonathan" # modifying elements

Names. append ("Jim") >>> ["Jonathan", "Alex", "Tom", "Catherine ","Jim"] # Add an element at the end of the list

Names. insert (2, "Linda") >>> ["Jonathan", "Alex ","Linda", "Tom", "Catherine", "Jim"] # insert an element in the place marked as 2. Move the other elements

Names. remove ("Linda") >>> ["Jonathan", "Alex", "Tom", "Catherine", "Jim"] # Delete the first retrieved Element

Del names [4] >>> ["Jonathan", "Alex", "Tom", "Catherine"] # Delete elements by subscript

Names. index ("Alex") >>> 1 # returns the subscript

Names. sort () >>> ["Alex", "Catherine", "Jonathan", "Tom"] # sort by ASCII forward

Names. reverse () >>> ["Tom", "Jonathan", "Catherine", "Alex"] # element Inversion

Names. count ("Tom") >>> 1 # Return the number of occurrences

 

 

 

 

 

 

 

 

 

Iii. Operation

1. Arithmetic Operations

2. Comparison

3. Value assignment

4. logical operations

5. member operations

6. Identity Calculation

7. bitwise operations

 

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.