Question 4: Create a variable called num
_variable_records that stores the length of medical records
The hint suggests
num_medical_records = len(medical_records)
However, a TypeError: object of type zip has no len()
I tired the following
num_medical_records = len(list(medical_records)
But this results in : 0