android_english = []
ios_english = []
for app in android_clean:
name = app[0]
if is_english(name):
android_english.append(app)
for app in ios_body:
name = app[1]
if is_english(name):
ios_body.append(app)
explore_data(android_english, 0, 3, True)
print('\n')
explore_data(ios_body, 0, 3, True)
What I expected to happen:
Expected to create list with English naming apps only.
What actually happened:
Nothing happened. Cell is unable to run and stuck at