Continuing the discussion from I'm Getting Incorrect Numbers for Numbers of Apps:
Screen Link:
My Code: <!–android_english =
ios_english =
for app in android_clean:
name = app[0]
if is_english(name):
android_english.append(app)
for app in ios:
name = app[1]
if is_english(name):
ios_english.append(app)
explore_data(android_english, 0, 3, True)
print(’\n’)
explore_data(ios_english, 0, 3, True)
–>
What I expected to happen:
i expected the number of row and column to be the same for both dataset(android_english , ios_english)
What actually happened:
the number of row and column for both data set was the same as compared
with that of the provided solution whose number of row and column reduced```
Replace this line with the output/error
<!--Enter other details below: -->