Hi<br><br>I'm just getting myself going again on Python and would appreciate any help.<br><br>My install of Python seems to have some difficulty loading and using the time module in a script.  Strange thing is that if I start another instance of Python I can type in my program manually/interactively and it works.<br><br>The version of Python I am using is...<br><b><br>Python 2.5.1 (r251:54863, Mar  7 2008, 04:10:12) <br>[GCC 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)] on linux2</b><br><br>Installed on a Ubuntu 7.10 workstation.<br><br>Here's my little program....<br><br><b>jeff@office:~/tmp$ more < time.py<br><br>import time<br>print time.time()</b><br><br>And this is what happens when I run it....<br><br><b>jeff@office:~/tmp$ python time.py<br><br>Traceback (most recent call last):<br>  File "time.py", line 1, in <module><br>    import time<br>  File "/home/jeff/tmp/time.py", line 2, in <module><br>    print time.time()<br>TypeError: 'module' object is not callable<br>Error in sys.excepthook:<br>Traceback (most recent call last):<br>  File "/var/lib/python-support/python2.5/apport_python_hook.py", line 38, in apport_excepthook<br>    from apport.fileutils import likely_packaged<br>  File "/var/lib/python-support/python2.5/apport/__init__.py", line 1, in <module><br>    from apport.report import Report<br>  File "/var/lib/python-support/python2.5/apport/report.py", line 14, in <module><br>    import subprocess, tempfile, os.path, urllib, re, pwd, grp, os, sys<br>  File "/usr/lib/python2.5/urllib.py", line 28, in <module><br>    import time<br>  File "/home/jeff/tmp/time.py", line 2, in <module><br>    print time.time()<br>TypeError: 'module' object is not callable<br><br>Original exception was:<br>Traceback (most recent call last):<br>  File "time.py", line 1, in <module><br>    import time<br>  File "/home/jeff/tmp/time.py", line 2, in <module><br>    print time.time()<br>TypeError: 'module' object is not callable<br><br>jeff@office:~/tmp$ </b><br><br>Any hints or tips appreciated.<br>Jeff.<br>