View Problem

Display the current date and time

Create a Date object representing the current date and time. Print it out.
If you can also do this without creating a Date object you can show that too.
DiskEdit
python
from datetime import datetime
print datetime.utcnow()

Submit a new solution for python
There are 18 other solutions in additional languages (clojure, cpp, csharp, erlang ...)