A certain dataframe, has a similar break with the one below:
import pandas as pd
df = pd.DataFrame({'name': ['John', 'Elvis', 'Gerrard', 'Pitty'],
'age': [22,23,24,25],
'document': [111,222,333,4444]})
How can I make a filter to return only the rows where the values in the document column are only 3 digits?