A | B |
Print | a function that outputs/shows what is on your console window |
Multi-line comment | Notes written by the programmer that span over multiple lines |
string | a sequence of characters |
variable | A place in memory where you can store data |
random generator | an algorithm that creates a random number from a given range of numbers |
integer | A whole number |
iteration | Each time you go through a set of instructions in a loop |
loop | A set of instructions that is repeated |
condition | The boolean expression after the if statement |
comment | A way for the programmer to describe what is happening in the code and write notes |
range | it generates a list of numbers, which is generally used to iterate over with for loops. |
import | To access code from another module in python |
boolean | A logical expression represented by true or false |
Data type | is an attribute of data which tells the compiler or interpreter how the programmer intends to use the data for instance: integer, string, character, or float |