In article <[EMAIL PROTECTED]>,
Chris Hieronymus <[EMAIL PROTECTED]> wrote:
.
.
.
> msg = str(x)+" "+str(y)+"\n"
> p1.stdin.write(msg)
.
.
.
While Python prides itself on the clarity of its preferred style,
note that the former line might just as well be written
msg = "%s %s\n" % (x, y)
a form which some of us prefer.
--
http://mail.python.org/mailman/listinfo/python-list
