You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm having a hard time recreating the part in the tutorial where the non-English apps get removed from the ios data set. The solutions works totally fine for the Android apps but when I copy/paste exactly, no iOS apps get removed...
Also obviously I can't figure out how to do the indentation when I post this question.
android_english = []
ios_english = []
for app in android_clean:
name = app[0]
if is_english(name):
android_english.append(app)
for app in ios[1:]:
name = app[1]
if max_three_non_english(name):
ios_english.append(app)
I'm having a hard time recreating the part in the tutorial where the non-English apps get removed from the ios data set. The solutions works totally fine for the Android apps but when I copy/paste exactly, no iOS apps get removed...
Also obviously I can't figure out how to do the indentation when I post this question.
android_english = []
ios_english = []
for app in android_clean:
name = app[0]
if is_english(name):
android_english.append(app)
for app in ios[1:]:
name = app[1]
if max_three_non_english(name):
ios_english.append(app)
print(len(android_english))
print(len(ios_english))
The text was updated successfully, but these errors were encountered: