Comment on Python for the impatientComments−Luyt13y print "foo=%(foo)s bar%(bar)s" % {foo:123,bar:321} is incorrect. It should read: print "foo=%(foo)s bar%(bar)s" % {"foo": 123, "bar": 321}
Comments