string: Set of characters with letters, numbers, or symbols ( eg. numbers or numb3rs or numb3rs! )
integer: Numbers without a decimal point ( eg. 39 )
float: Numbers with a decimal ( eg. 3.9 )
list: Set of multiple values in a single variable name ( eg. school_subjects = [ 0, “Math”, 1, “Science”, 2, “P.E.”, 3, “Social Studies” ] )
Also known as an “array”
tuple: Set of multiple values that cannot be changed ( eg. ( 0, “Math”, 1, “Science”, 2, “P.E” ) )
sequence: An ordered collection of items, capable of being accessed by index. Common sequence types in Python include lists, tuples, and strings.
set: An unordered collection of unique elements. It is similar to a list or tuple, but it does not allow duplicate values. Sets are useful for tasks such as removing duplicates from a sequence, testing for membership, and performing mathematical set operations like union, intersection, and difference.
boolean: Can only have 1 value of True or False ( eg. favorite_color = True )