私は独学で Python を学んでいて、ただ「探索」していました。Google によると、datetime はグローバル変数ですが、ターミナルで今日の日付を検索しようとすると、質問のタイトルに NameError が表示されますか?
mynames-MacBook:pythonhard myname$ python
Enthought Canopy Python 2.7.3 | 64-bit | (default, Aug 8 2013, 05:37:06)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> date = datetime.date.today()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'datetime' is not defined
>>>