I was reading the solution workbook and found we didn’t omit header row. Can you please confirm the code below includes header row while counting the number of free apps with filter out of non-english apps? When I add like for app in android_english[1:] then i get total number of apps for android is 9613.
android_final = []
ios_final = []
for app in android_english:
price = app[7]
if price == '0':
android_final.append(app)
for app in ios_english:
price = app[4]
if price == '0.0':
ios_final.append(app)
print(len(android_final))
print(len(ios_final))