How to get current timestamp in Pandas

Use

current_timestamp_pandas.py
import pandas as pd

current_timestamp = pd.Timestamp.now()

pd.Timestamp.now() will return the timestamp as pandas.Timestamp object.

Example:

timestamp_example.py
>>> import pandas as pd
>>> pd.Timestamp.now()
Timestamp('2019-10-27 16:11:43.998993')

Check out similar posts by category: Pandas, Python