Recent Comments:

Under The Grid - Building a simple bot in ironpython

Second Life Insider

Aug 18th 2007 10:11AM Oh so sorry , i forgot a line, change
"i=string.strip(i)" for this
"i=String.strip(i)"
Pardon me :)
bye bye

Under The Grid - Building a simple bot in ironpython

Second Life Insider

Aug 18th 2007 10:06AM Hi, im really a beginner in python but i couldnt make this code work at first then i did these few modifications:

exchanged "import string" for this:
"import System" and then "from System import *". As i said im new on this. May be you dont need the first declaration.
I also changed this:
(fname,lname)=string.split(i," ") that became:
(fname,lname)=String.split(i," ") (notice the S in String)

I had to do that because i was receiving an error saying "string" wasnt found.

I hope I helped :)
bye bye