Try using string.join:
p = subprocess.Popen(args = "myprog.exe" + " " +
str(input1) + " " +
str(input2) + " " +
str(input3) + " " +
" ".join(strpoints), stdout = subprocess.PIPE)
TokenMacGuy
2009-09-10 23:50:59