Open Rexw099 opened 5 years ago
When the script runs the following function I get the following error.
def find_missing_data(zipped_data): missing_count = 0 for question, answer in zipped_data: if not answer: missing_count += 1 return missing_count
__in find_missing_data for question, answer in zippeddata: ValueError: too many values to unpack
When the script runs the following function I get the following error.
def find_missing_data(zipped_data): missing_count = 0 for question, answer in zipped_data: if not answer: missing_count += 1 return missing_count
__in find_missing_data for question, answer in zippeddata: ValueError: too many values to unpack