w3resource

Pandas Datetime: Create the todays date

Pandas Datetime: Exercise-1 with Solution

Write a Pandas program to create the todays date.

Sample Solution :

Python Code :

import pandas as pd
from datetime import date
now = pd.to_datetime(str(date.today()), format='%Y-%m-%d')
print("Today's date:")
print(now)

Sample Output:

Today's date:
2019-07-08 00:00:00

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Python Pandas Datetime Home.
Next: Write a Pandas program to calculate all the sighting days of the unidentified flying object (ufo) from current date.

What is the difficulty level of this exercise?



Follow us on Facebook and Twitter for latest update.