Re: What kind of program is this

2006-10-04 Thread skip
Fredrik> http://en.wikipedia.org/wiki/JAPH That's an interesting JAPH written with only punctuation... Skip -- http://mail.python.org/mailman/listinfo/python-list

Re: What kind of program is this

2006-10-04 Thread Wildemar Wildenburger
Fredrik Lundh wrote: > John Smith wrote: >> what kind of program is this? > > http://en.wikipedia.org/wiki/JAPH You computer guys crack me up! :D wildemar -- http://mail.python.org/mailman/listinfo/python-list

Re: What kind of program is this

2006-10-04 Thread Fredrik Lundh
John Smith wrote: > what kind of program is this? http://en.wikipedia.org/wiki/JAPH -- http://mail.python.org/mailman/listinfo/python-list

Re: What kind of program is this

2006-10-03 Thread Peter Otten
Dennis Lee Bieber wrote: > ##aJAPy = "%s %s %s" % ('J' 'A' 'Py','','') > #   That should fail -- three format codes, and five output values No. 'JAPy' is a single string, oddly written: >>> 'J' 'A' 'Py' 'JAPy' Peter -- http://mail.python.org/mailman/listinfo/python-list