Part 1 Extras includes various useful programming content that didn’t quite fit into a specific lesson. While you might not encounter some of these techniques in upcoming lessons, feel free to incorporate them into your future programs.
Compound assignment operators combine variable assignment and arithmetic operations, allowing for more concise statements. They simplify the code by performing both tasks in a single step.
+=
- Adds the right operand to the variable on the left side and assigns the result to the variable.
-=
- Subtracts the right operand from the variable on the left side and assigns the result to the variable.
*=
- Multiplies the right operand by the variable on the left side and assigns the result to the variable.
/=
- Divides the variable by the right operand and assigns the result to the variable.
%=
- Divides the variable by the right operand and assigns the remainder to the variable.
Examples
number = 10
number += 5 # Equivalent to number = number + 5
print(number)
number -= 3 # Equivalent to number = number - 3
print(number)
number *= 2 # Equivalent to number = number * 2
print(number)
number /= 4 # Equivalent to number = number / 4
print(number)
number %= 4 # Equivalent to number = number % 4
print(number)
Constants are named identifiers whose values are assigned at runtime and remain the same throughout the execution of the program. Think of constants as variables that are assigned a value before the program starts and can never be changed.
Constants provide a way to keep values fixed throughout the execution of a program. This prevents accidental changes that could introduce bugs or inconsistent behavior.
In Python, you typically use uppercase letters for constant names to distinguish them from other variables.
Examples
TAX_RATE = 0.08 # Constants are typically named in uppercase
subtotal = 20.48
grand_total = subtotal * TAX_RATE
print(grand_total)
In this example:
Recall that math.pi
from Activity 1.8 is a constant. π is always the same value and should never change. Thus, it’s defined as a constant as opposed to a simple variable.
Escape characters are special sequences used in strings to represent characters that are difficult to type directly into plain text. Here are a few useful escape characters you may need down the line. See article for more examples.
\n
: Newline - We’ve used the newline character to add extra spacing between lines of output.\t
: Tab - Tabs are useful for providing even spacing between data.\"
: Double quote - Use this if you need to put a double quote within a string.\\
: Literal backslash - Since backslashes denote the beginning of an escape character, they need an escape character of their own.