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?
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://198.211.115.131/python-exercises/pandas/datetime/pandas-datetime-exercise-1.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics