Looks like no one added any tags here yet for you.
Code
the instructions written in a programming language that a computer can execute (python)
Syntax
the rules and structure of how code must be written for it to run correctly
algorithm
a step-by-step set of instructions to solve a problem
debugging
the process of finding and fixing errors (or “bugs”) in your code
IDE
interactive development environment
basic printing
print(‘example’)
f-strings
print(f’example {variable}')
variables
labeled boxes storing information (created with =)
integer
whole numbers
floating-point
numbers with decimals
string
text enclosed in quotes
boolean
true/false logical values
if statement
executes code only when a condition is true
if-else
when you need to take one action if a condition is true and another if it is false
and
true if both conditions are true
or
true if at least one condition is true
not
inverts a boolean value
if-elif-else
used to check multiple conditions in a sequence