Class 9th CBSE

Write python code to find out the areas that are more than 50000 km2 .

2.Write python code to find out the areas that are more than 50000 km2.
The series Area has been created like :-
Area = pd.Series([3659,858,9659,78965,34568, 12456, 6935, 25649, 85214, 9645,3695]

Solution:- 

import pandas as pd
area = pd.Series([3659,858,9659,78965,34568,12456,6935,85214,9645,3695])
for i in area:
if i>50000:
print(i)
else:
continue