Complete the function get_column to extract an entire column…
Complete the function get_column to extract an entire column from data to a list. The formate of the dataset is: data = , # row 1 , # row 2 # row 3 # … more rows]header = Since multiple dropdown makes it a little hard to read, we put the well-formatted version of code here. Select the correct code replacements in the below list of drop downs. def get_column(col_name): col_idx = **blank1** data_column = ) return **blank3** get_column(“gender”) # sample invocation Select the best choice for: