What is an Integer?
A Whole Number, e.g. 6
What is A Boolean?
A data type which is used for binary variables that can have one of two possible values, 0 (false) or 1 (true)
What is a Float?
A data type used for used for floating-point numbers which means they have a number that has a decimal place, e.g. 6.5
What is a String?
A data type used for data values that are made up of ordered sequences of characters, e.g. Hello
How would you make a 4.3 float to an integer?
int(4.3)
How would you make a 5 integer into a float?
float(5)