print - a function in python that outputs the code in the brackets to the command window.
input - a function in python that allows the user to enter text into the program.
if - code below and if statement is only executed is the above condition is met.
Variable - holds a value that can be changed during the program.
Comment - text for the purpose of the programmer to explain what certain code does. Code comments are not executed by the computer.
Operator - A symbol (such as +, −, ×, etc) that shows an operation (i.e. you want to do something with the values).
Variable - holds a value that can be changed during the program.
casting - The process of changing a variable from one datatype to another. For example changing a "string" to an integer.
hard coded - A value in a program that can not be changed during the running of a program. for example print(2+2).
Comparison - Comparing two different values to see their relation. for example is A bigger than B is C the same as D.
Operator - A symbol (such as +, −, ×, etc) that shows an operation (i.e. you want to do something with the values).
Variable - holds a value that can be changed during the program.
casting - The process of changing a variable from one datatype to another. For example changing a "string" to an integer.
hard coded - A value in a program that can not be changed during the running of a program. for example print(2+2).