26-33 of 1,100,000 results
Open links in new tab
  1. Python Operators - Python Guides

    Learn about Python operators including arithmetic, comparison, logical, assignment, and bitwise operators. Understand how they work to perform operations on values

  2. Difference Between '==' And 'is' Operator In Python - Flexiple

    Mar 19, 2024 · Explore the key differences between '==' and 'is' operators in Python. Learn how they compare values and object identities with practical examples.

  3. syntax - What does the "at" (@) symbol do in Python? - Stack ...

    In Python 3.5 you can overload @ as an operator. It is named as __matmul__, because it is designed to do matrix multiplication, but it can be anything you want.

  4. What does \\\\\\\'is\\\\\\\' operator do in Python?

    The "is" operator in Python is an identity operator. This operator checks whether two variables refer to the same object in memory. It returns boolean values as a result. Each object in the computer's …

  5. Python “is” and “is not”: Explained Using Examples!

    Nov 7, 2021 · Every programming language comes in-built with arithmetic operators for addition, subtraction, multiplication and division operations, and logical operators for AND, OR, NOT and XOR …

  6. operators - Python != operation vs "is not" - Stack Overflow

    In a comment on this question, I saw a statement that recommended using result is not None vs result != None What is the difference? And why might one be recommended over the other?

  7. Is Operator in Python

    Aug 26, 2024 · Learn how to use the is operator in Python for object identity comparisons and unlock a deeper understanding of how your code interacts with objects. ...

  8. Python - Star or Asterisk operator ( * ) - GeeksforGeeks

    Apr 25, 2025 · The asterisk (*) operator in Python is a versatile tool used in various contexts. It is commonly used for multiplication, unpacking iterables, defining variable-length arguments in …