Created
January 27, 2018 04:04
-
-
Save Tahsin-Mayeesha/20e135f9b7615e90e1369e7d4eec5402 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
datelist = pd.date_range(pd.datetime.today(), periods =365).date.tolist() | |
f = open("2018_planner.txt","w") | |
for date in datelist: | |
f.write("# " + str(date) + '\n') | |
f.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment