Python Learning Path 1

Source: Internet
Author: User

First, the Python symbolic operation
+ Plus-two objects added
-minus-get negative numbers or one number minus the other
* Multiply by two numbers or return a string that is repeated several times
/Divide-X divided by Y
% modulo-returns the remainder of the Division
* * Power-Returns the Y power of x
//Take Divisible-Returns the integer part of the quotient
= = equals-The comparison object is equal (a = = B) returns FALSE.
! = does not equal-compares two objects that are not equal (a! = B) returns true.
<> Not Equal-compares two objects for unequal

= simple assignment operator C = A + B assigns the result of the operation of A + B to c
+ = addition Assignment operator C + = A is equivalent to C = C + a
- = Subtraction assignment operator C-= A is equivalent to C = c-a
*= multiplication assignment operator C *= A is equivalent to C = c * a
/= Division assignment operator C/= A is equivalent to C = c/a
%= modulo assignment operator C%= A is equivalent to C = c% a
**= Power assignment operator C **= A is equivalent to C = c * * A
= Take divisible assignment operator C//= A is equivalent to C = c//A
Two, Python symbolic operation


Python Learning Path 1

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.