How to find corrupted date entry when date column type is (object)

1 week ago 3
ARTICLE AD BOX

I am trying to convert a column of time stamps that are currently of type object to proper datetime. When using pd.to_datetime() on the column I got this error

OutOfBoundsDatetime: Out of bounds nanosecond timestamp: 2821-11-10, at position 1818

I just want to find that value and correct it ie. should be 2021-11-10. But I can't find a way to search for that entry. The column is too large to physically look at every entry. Any tips?

Read Entire Article