About 50 results
Open links in new tab
  1. C | Operators | Unary operators | Codecademy

    Feb 6, 2025 · Unary operators in C operate on a single operand to perform various operations such as incrementing, decrementing, negating, or manipulating bits. They are frequently used for modifying …

  2. C++ (C Plus Plus) | Operators | Assignment Operators | Codecademy

    Sep 26, 2025 · Assignment operators in C++ are fundamental operators used to assign values to variables. They perform the essential task of storing data in memory locations represented by …

  3. C# (C Sharp) | Operators | Codecademy

    Nov 3, 2022 · Increment, ++, which increments its single operand by one. Decrement, --, which decrements its single operand by one. Unlike the other arithmetic operators, the increment and …

  4. what is an operand? - Codecademy

    Subtraction (-) Addition (+) Examples of Arithmetic operator usage on operands: 5 (Operand) + 7 (Operand) 7 (Operand) * 3 (Operand) There are Arithmetic Operators, Logical Operators, …

  5. TypeError: unsupported operand type (s) for %: 'tuple' and 'int'

    This forum is now read-only. Please use our new forums! Go to forums

  6. 15/15 unsupported operand type (s) for -: 'list' and 'int'

    In your if: sort[len(sort - 1). Wrong brackets. It should be like this: sort[(len(sort) - 1) / 2] Also, your median = 5.5 is useless. And in your if make sure to give it the right name. median instead of …

  7. C++ (C Plus Plus) | Operators | Logical Operators | Codecademy

    Aug 6, 2025 · Logical operators perform logical operations such as AND, OR, and NOT to combine or modify boolean expressions in C++.

  8. Python | Operators - Codecademy

    Jul 22, 2025 · Operators in Python programming are special symbols or keywords that perform operations on variables and values. They are fundamental building blocks that allow developers to …

  9. Missing operand; found - Codecademy

    This is a recurring problem for me. I am often being corrected with the message "missing operand; found *fill in the blank*"; things like "found else...

  10. [resolved] why this error : unsupported operand type(s) for +: 'int ...

    get_average (alice) raised the following error: unsupported operand type (s) for +: ‘int’ and ‘str’ I suspect something with the 85.3333333 result for alice’s quizzes.