[SOLVED]Reading computer clock time via python?

Hey! I’m trying to read a current time via python to be used in bge (2.6x) but I haven’t found a right module or something. Is there any way to do it in bge?

this works for me:

import time
print(time.ctime())

See also: http://docs.python.org/py3k/library/time.html

mb