I am new to Python, and try to import a today method from datetime module
The only workable way I can figure out is:
from datetime import datetime
datetime.today()
But, I would like to make today sit in the import statement, like from os import getcwd works,
I tried the following two ways, but neither works
from datetime import datettime.today
from datetime.datetime import today