The keyword 'print' outputs text in brackets to the screen
To store data in a program we use a variable followed by this sign
colon (:)
equals (=)
hyphen (-)
To allow the user of a program to enter data in response to a question we use the keyword 'int'
Data that consists of letters, characters, spaces and numbers is this data type:
string
integer
float
To cast a number back to string we use int( )
To tell a program to only run if a specified condition is met, we use:
else
elif
if
Iteration means:
the program will end
the program will loop
To make a program easier to read and understand we use a line of text to explain part of the code. So that the line of text does not become confused as part of the actual program, we use this character:
#
*
Boolean conditions can only have 1 of 2 possible values, e.g. ==, !=