Archive for March 8th, 2005



Print statement in XSI

March 8th, 2005 by Patrick Boucher. Viewed 1810 times.

I get an e-mail from Rick Walia at The Mill this morning…
[...snip...]
Anyways, you know you can use the print statement with python & XSI right?
Nope! I hadn”t even tried it out. And check this out:
from time import time
from win32com.client import constants as c

t1 = time()
for x in range(500):
Application.LogMessage(x, c.siComment)
t1 = time() [...]