problem with datetime

B

bncarper

Relatively new to python. I can get the following to work from the
command line:

Python 2.3.4 (#2, Aug 18 2004, 21:49:15)
[GCC 3.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
But when I try to run the following small program I get the following
results:

import datetime
d = datetime.datetime.today()
print d

Traceback (most recent call last):
File "datetime.py", line 1, in ?
import datetime
File "/home/bob/pyshow/datetime.py", line 3, in ?
d = datetime.datetime.today()
AttributeError: 'module' object has no attribute 'today'

Do I need to change a path?
Running python 2.3.4 on linux redhat 7.3.

Bob
 
G

Gerhard Haering

Relatively new to python. I can get the following to work from the
command line:

Python 2.3.4 (#2, Aug 18 2004, 21:49:15)
[GCC 3.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
But when I try to run the following small program I get the following
results:

import datetime
d = datetime.datetime.today()
print d

Traceback (most recent call last):
File "datetime.py", line 1, in ?
import datetime
File "/home/bob/pyshow/datetime.py", line 3, in ?
^^^^^^^^^^^
d = datetime.datetime.today()
AttributeError: 'module' object has no attribute 'today'

Do I need to change a path?
Running python 2.3.4 on linux redhat 7.3.

Change your script's name from datetime.py to something else. Otherwise the
script will import itself, and not the datetime module from the standard
library.

-- Gerhard
--
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFBuZXddIO4ozGCH14RApIoAJ9viDHd8FYHAYv+cd0rvdeaQjL/RACfVZm6
3t42eLZdhQ3jVlUwPtjjEHM=
=0c2v
-----END PGP SIGNATURE-----
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,982
Messages
2,570,185
Members
46,736
Latest member
AdolphBig6

Latest Threads

Top