How many rows and columns are present in the dataframe?
# Write your code for filling the NaN values in the 'language' column here
movies[movies["language"]=="English"]
#movies["language"]=movies["language"].astype("str")
#movies.apply(lambda x:"English" if x=="nan" else "")